Initial CMake conversion of examples-codegen/example2-client
[libt2n] / configure.in
CommitLineData
ac7fdc22
GE
1AC_INIT(configure.in)
2
3AM_CONFIG_HEADER(config.h)
28cb45a5 4dnl AC_CONFIG_HEADERS([config.h:config.h.in])
ca556125 5AM_INIT_AUTOMAKE(libt2n, 0.6)
ac7fdc22 6
28cb45a5
GE
7AC_DEFINE(PROTOCOL_VERSION, 1, [protocol version used (integers, increase version if incompatible)])
8
ac7fdc22
GE
9AC_LANG_CPLUSPLUS
10AC_PROG_CXX
11AM_PROG_LIBTOOL
12
59adb9e2 13dnl check for doxygen
a16e5f7e 14AC_PATH_PROG(DOXYGEN, doxygen)
59c8cfaa 15AM_CONDITIONAL(HAVE_DOXYGEN, test -n $DOXYGEN)
59adb9e2 16
07e98688 17AM_CONDITIONAL(AUTOCHECK, test "$enable_autocheck" = yes)
07e98688 18
3d9c0861
TJ
19AX_BOOST_BASE([1.33])
20AX_BOOST_SERIALIZATION
307b5e74 21AX_BOOST_UNIT_TEST_FRAMEWORK
d184c648
GE
22if test "x$BOOST_SERIALIZATION_LIB" = "x"; then
23 echo "Sorry, we need the Serialization-Lib from Boost."
24 exit 1
25fi
307b5e74
TJ
26if test "x$BOOST_UNIT_TEST_FRAMEWORK_LIB" = "x"; then
27 AC_MSG_ERROR([Sorry, we need the unit test framework from Boost.])
28fi
d184c648 29
eea21b24
JT
30PKG_CHECK_MODULES(XMLPP, libxml++-2.6 >= 2.8.1)
31AC_SUBST(XMLPP_CFLAGS)
32AC_SUBST(XMLPP_LIBS)
6f6d24c0 33
1f0aa49f 34dnl fake installed libt2n (codegen) for example-codegen
307b5e74 35dnl LIBT2N_CFLAGS="-I\$(top_srcdir)/src @BOOST_CPPFLAGS@ -I\$(top_srcdir)/codegen"
2e525d6f
JT
36dnl LIBT2N_LIBS="\$(top_builddir)/src/libt2n.la @BOOST_SERIALIZATION_LIB@ @BOOST_LDFLAGS@"
37dnl LIBT2N_CODEGEN="\$(top_builddir)/codegen/libt2n-codegen"
38dnl LIBT2N_CLIENT_PCTEMPLATE="\$(top_srcdir)/codegen/clientlib.pc.in"
44a58add 39
86c3b9ab 40AC_SUBST(LIBT2N_CFLAGS)
44a58add
JT
41AC_SUBST(LIBT2N_LIBS)
42AC_SUBST(LIBT2N_CODEGEN)
1f0aa49f 43AC_SUBST(LIBT2N_CLIENT_PCTEMPLATE)
7eb34f4d
JT
44
45dnl todo: do not create .pc file in configure but in make
46dnl see also autoconf manual "Installation Directory Variables"
ca556125 47
c8dcbc9e 48AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile examples/Makefile codegen/Makefile examples-codegen/Makefile)