Small optimizations on performance and memory.
[genetic.git] / configure.ac
1 AC_INIT([Genetic], [0.2], [bugz@dlugolecki.net.pl], [genetic], [http://dlugolecki.net.pl/software/genetic/])
2 AC_PREREQ([2.59])
3 AM_INIT_AUTOMAKE([1.10 -Wall])
4 AC_CONFIG_HEADERS([config.h])
5 AC_PROG_CXX
6 AC_CONFIG_FILES([
7     Makefile
8     include/Makefile
9     tests/Makefile
10     docs/Makefile
11 ])
12
13 AC_CHECK_PROGS([DOXYGEN], [doxygen])
14 if test -z "$DOXYGEN"; then
15     AC_MSG_WARN([Doxygen not found - continuing without Doxygen support])
16 fi
17
18 AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
19 AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([docs/Doxyfile])])
20
21 AC_OUTPUT
22