📄 configure.in
字号:
# Original Author was Kalle@kde.org# I lifted it in some mater. (Stephan Kulow)# I used much code from Janos Farkasdnl Process this file with autoconf to produce a configure script.AC_INIT(acinclude.m4) dnl a source file from your sub dirdnl This is so we can use kde-commonAC_CONFIG_AUX_DIR(admin)dnl CPPFLAGS="$CPPFLAGS -DDATADIR=\"$(datadir)\""CPPFLAGS="-DDATADIR='\"${datadir}\"' $CPPFLAGS"AC_CANONICAL_SYSTEM AC_C_BIGENDIANdnl Automake doc recommends to do this only here. (Janos)AM_INIT_AUTOMAKE(qgo,0.2.2)dnl KDE_SET_PREFIXAC_PREFIX_DEFAULT(/usr/local)if test "x$prefix" = "xNONE"; then prefix=$ac_default_prefix ac_configure_args="$ac_configure_args --prefix $prefix"fidnl generate the config headerAM_CONFIG_HEADER(config.h) dnl at the distribution this donednl Checks for programs.AC_CHECK_COMPILERSCXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__dnl CXXFLAGS="$CXXFLAGS $USE_EXCEPTIONS" dnl __kdevelop[exc]__AC_ENABLE_SHARED(yes)AC_ENABLE_STATIC(no)KDE_PROG_LIBTOOLall_libraries="$all_libraries $USER_LDFLAGS"all_includes="$all_includes $USER_INCLUDES"AC_SUBST(all_includes)AC_SUBST(all_libraries)dnl for NLS support. Call them in this order!dnl WITH_NLS is for the po filesAM_KDE_WITH_NLSKDE_USE_QT(3)AC_PATH_QTdnl KDE_NEED_FLEX dnl __kdevelop__dnl AC_PROG_YACC dnl __kdevelop__dnl Perform program name transformationdnl AC_ARG_PROGRAMdnl PACKAGE set beforeKDE_CREATE_SUBDIRSLISTdnl add here all your Makefiles. This are created by configureAC_CONFIG_FILES([ Makefile ])dnl AC_CONFIG_FILES([ po/Makefile ])AC_CONFIG_FILES([ src/Makefile ])AC_CONFIG_FILES([ src/pics/Makefile ])AC_CONFIG_FILES([ src/sounds/Makefile ])AC_CONFIG_FILES([ src/translations/Makefile ])AC_CONFIG_FILES([ templates/Makefile ])AC_OUTPUT()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -