-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathconfigure.ac
More file actions
29 lines (22 loc) · 828 Bytes
/
configure.ac
File metadata and controls
29 lines (22 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Provide various options to initialize the Autoconf and configure processes.
AC_PREREQ([2.59])
AC_INIT([cppchannel], [1.0], [alex.horn@cs.ox.ac.uk])
AC_CONFIG_SRCDIR([src/channel.cpp])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([build-aux/config.h])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([Makefile])
AC_CONFIG_SUBDIRS([gtest])
AC_CHECK_PROGS([DOXYGEN], [doxygen])
if test -z "$DOXYGEN";
then AC_MSG_WARN([Doxygen not found - API documentation cannot be generated.])
fi
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([doc/Doxyfile])])
AM_INIT_AUTOMAKE([-Wall -Werror dist-zip foreign subdir-objects])
AC_PROG_CXX
AC_LANG([C++])
AX_CXX_COMPILE_STDCXX_11([noext])
AC_PROG_LIBTOOL
# Output the generated files. No further autoconf macros may be used.
AC_OUTPUT