configure.ac 450 B

1234567891011121314151617181920
  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. AM_PATH_CHECK(,[have_check="yes"],AC_MSG_WARN([Check not found; cannot run unit tests!])
  7. [have_check="no"])
  8. AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")
  9. AC_PROG_CC
  10. AC_PROG_CC_C_O
  11. AC_PROG_LIBTOOL
  12. AC_CONFIG_MACRO_DIR([m4])
  13. AC_CONFIG_FILES(Makefile src/Makefile tests/Makefile)
  14. AC_OUTPUT