Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AC_INIT(g4vertex, [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   CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra"
0017  ;;
0018 esac
0019 
0020 
0021 CINTDEFS=" -noIncludePaths  -inlineInputHeader "
0022 AC_SUBST(CINTDEFS)
0023 
0024 AC_CONFIG_FILES([Makefile])
0025 AC_OUTPUT