-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
32 lines (25 loc) · 1.32 KB
/
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
# Define package version here.
#
# CW_VERSION_MAJOR : Increment when the whole library was rewritten; or some VERY MAJOR change was made.
# CW_VERSION_MINOR : Increment when major changes have occured, like removing interfaces.
# CW_VERSION_REVISION : Increment every public release; or set to 0 when CW_VERSION_MINOR was incremented.
define(CW_VERSION_MAJOR, 0)
define(CW_VERSION_MINOR, 0)
define(CW_VERSION_REVISION, 0)
# Package name and bug reporting.
define(CW_PACKAGE_NAME, [recursive2018])
define(CW_BUGREPORT, [feniks.carlo@gmail.com])
# CW_COMPILE_FLAGS may contain warning flags, but also default debug flags (-g*)
# and optimization flags (-O*) that which will be stripped when not required.
define(CW_COMPILE_FLAGS, [-std=c++11 -W -Wall -Woverloaded-virtual -Wundef -Wpointer-arith -Wwrite-strings -Winline])
# CW_THREADS can be [no] (single-threaded), [yes] (multi-threaded) or [both] (single and multi-threaded applications).
define(CW_THREADS, [no])
# Include cwm4 header.
m4_include([cwm4/configure_ac_top.m4])
### Uncomment this if the project is using doxygen to generate documentation.
# We use doxygen for documentation.
#CW_DOXYGEN
### Uncomment this to add more configuration output files.
AC_CONFIG_FILES([src/Makefile])
# Include cwm4 footer.
m4_include([cwm4/configure_ac_bottom.m4])