diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..f95ddd0 --- /dev/null +++ b/configure.ac @@ -0,0 +1,69 @@ +AC_PREREQ([2.69]) + +AC_INIT([exsample], [1.0]) + +AM_INIT_AUTOMAKE([foreign subdir-objects]) + +#AC_CONFIG_SRCDIR([src/exsample.cpp]) + +AC_CONFIG_HEADERS([include/config.h]) + +AC_CONFIG_MACRO_DIR([m4]) + + +AC_ARG_ENABLE([address-sanitizer], + [AS_HELP_STRING([--enable-address-sanitizer], [Enable address sanitizer in build time (for debug, default is no)])], + [:], + [enable_address_sanitizer=no]) +AM_CONDITIONAL([ENABLE_ADDRESS_SANITIZER], [test "$enable_address_sanitizer" = "yes"]) + +AC_ARG_ENABLE([gcov], + [AS_HELP_STRING([--enable-gcov], [Enable gcov in build time (for debug, default is no)])], + [:], + [enable_gcov=no]) +AM_CONDITIONAL([ENABLE_GCOV], [test "$enable_gcov" = "yes"]) + +AC_ARG_ENABLE([test], + [AS_HELP_STRING([--enable-test], [Enable unit test build (requir to gtest and gmock, default is no])], + [:], + [enable_test=no]) +AM_CONDITIONAL([ENABLE_TEST], [test "$enable_test" = "yes"]) + + +AC_ARG_ENABLE([printfdebug], + [AS_HELP_STRING([--enable-printfdebug], [Enable user printf debug (default is no)])], + [:], + [enable_printfdebug=no]) +AM_CONDITIONAL([ENABLE_PRINTFDEBUG], [test "$enable_printfdebug" = "yes"]) + +# Checks for programs. +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL + +AC_DISABLE_STATIC + +# Checks for libraries. +LT_INIT +AC_PROG_LIBTOOL + +PKG_PROG_PKG_CONFIG +PKG_CHECK_MODULES([GTEST_MAIN], [gtest_main], , enable_test=no) +PKG_CHECK_MODULES([GMOCK_MAIN], [gmock_main], , enable_test=no) + + +# Checks for header files. + +# Checks for typedefs, structures, and compiler characteristics. + +# Checks for library functions. + +AC_CONFIG_FILES([ + Makefile + libredundancyfileop.pc + lib/Makefile + test/Makefile + ]) + +AC_OUTPUT + |