Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AC_INIT(g4decayer, [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   no point in suppressing warnings people should 
0010 dnl   at least see them, so here we go for g++: -Wall
0011 dnl leaving this here in case we want to play with different compiler 
0012 dnl specific flags
0013 dnl case $CXX in
0014 dnl  clang++)
0015 dnl   CXXFLAGS="$CXXFLAGS -Wall -Werror"
0016 dnl  ;;
0017 dnl  *g++)
0018 dnl   CXXFLAGS="$CXXFLAGS -Wall -Werror"
0019 dnl  ;;
0020 dnl esac
0021 
0022 if test $ac_cv_prog_gxx = yes; then
0023    CXXFLAGS="$CXXFLAGS -Wall -Werror -Wextra -Wshadow"
0024 fi
0025 
0026 dnl   AM_CONDITIONAL(GCC_GE_48, test `g++ -dumpversion | awk '{print $1>=4.8?"1":"0"}'` = 1)
0027 
0028 AC_CONFIG_FILES([Makefile])
0029 AC_OUTPUT
0030 
0031