Warning, /analysis/JS-Jet/PPG04EventSelector/configure.ac is written in an unsupported language. File is not indexed.
0001 AC_INIT(ppgeventselector,[1.00])
0002 AC_CONFIG_SRCDIR([configure.ac])
0003
0004 AM_INIT_AUTOMAKE
0005
0006 AC_PROG_CXX(CC g++)
0007 LT_INIT([disable-static])
0008
0009 dnl leaving this here in case we want to play with different compiler
0010 dnl specific flags
0011 case $CXX in
0012 clang++)
0013 CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra"
0014 ;;
0015 *g++)
0016 if test `g++ -dumpversion | gawk '{print $1>=8.0?"1":"0"}'` = 1; then
0017 CXXFLAGS="$CXXFLAGS -Wall -Wno-deprecated-declarations -Werror -Wextra"
0018 else
0019 CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra"
0020 fi
0021 ;;
0022 esac
0023
0024
0025 CINTDEFS=" -noIncludePaths -inlineInputHeader "
0026 AC_SUBST(CINTDEFS)
0027
0028 AC_CONFIG_FILES([Makefile])
0029 AC_OUTPUT