Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /coresoftware/simulation/g4simulation/g4jets/configure.ac is written in an unsupported language. File is not indexed.

0001 AC_INIT(g4jets, [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 CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra -Wshadow"
0010 dnl leaving this here in case we want to play with different compiler 
0011 dnl specific flags
0012 case $CXX in
0013  *analyzer)
0014    CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations"
0015  ;;
0016  clang++)
0017  ;;
0018  *g++)
0019    CXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations"
0020  ;;
0021 esac
0022 
0023 
0024 CINTDEFS=" -noIncludePaths  -inlineInputHeader "
0025 AC_SUBST(CINTDEFS)
0026 
0027 AC_CONFIG_FILES([Makefile])
0028 AC_OUTPUT