-
Notifications
You must be signed in to change notification settings - Fork 6
/
configure.ac
37 lines (30 loc) · 839 Bytes
/
configure.ac
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
30
31
32
33
34
35
36
37
# CODYlib -*- mode:autoconf -*-
# Copyright (C) 2020 Nathan Sidwell, [email protected]
# License: Apache v2.0
AC_INIT([codylib],[0.0],[github.com/urnathan/libcody])
AC_CONFIG_SRCDIR(cody.hh)
m4_include(config.m4)
AC_CONFIG_AUX_DIR(build-aux)
AC_SUBST(PACKAGE_VERSION)
NMS_NOT_IN_SOURCE
AC_CANONICAL_HOST
NMS_TOOLS
NMS_NUM_CPUS
NMS_MAINTAINER_MODE
NMS_CXX_COMPILER
AC_LANG(C++)
AC_PROG_CXX
NMS_CXX_11
NMS_TOOL_DIRS
NMS_LINK_OPT([-Wl,--no-undefined])
NMS_CONFIG_FILES([gdbinit dox.cfg])
NMS_BUGURL
NMS_ENABLE_CHECKING
NMS_ENABLE_EXCEPTIONS
AC_CONFIG_HEADERS([config.h])
AC_CHECK_TOOL([AR],[ar])
AC_CHECK_PROG([DOXYGEN],[doxygen],[doxygen],[: NOTdoxygen])
AC_CHECK_PROG([ALOY],[aloy],[aloy],[: Joust testsuite missing])
AH_VERBATIM([_GNU_SOURCE],[#define _GNU_SOURCE 1])
AH_VERBATIM([_FORTIFY_SOURCE],[#undef _FORTIFY_SOURCE])
AC_OUTPUT