configure.ac 533 B

123456789101112131415161718192021
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_PREREQ(2.59)
  3. AC_INIT(OPCUAServer, 1.0)
  4. AC_CANONICAL_SYSTEM
  5. AM_INIT_AUTOMAKE()
  6. AC_PROG_CC
  7. AM_PROG_CC_C_O
  8. AC_CHECK_LIB([m],[exp],,AC_MSG_ERROR([Libm missing]))
  9. PKG_CHECK_MODULES([CHECK], [check >= 0.9.4],[have_check="yes"],AC_MSG_WARN([Check not found; cannot run unit tests!])
  10. [have_check="no"])
  11. AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
  12. AC_PROG_LIBTOOL
  13. AC_CONFIG_MACRO_DIR([m4])
  14. AC_CONFIG_FILES(Makefile src/Makefile tests/Makefile)
  15. AC_OUTPUT