-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdefault.features
110 lines (86 loc) · 3.49 KB
/
default.features
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
///============================================================================
///
/// @file default.features
///
/// @brief Defines features that control project builds.
///
/// @author James Edmondson
///
///============================================================================
/// @feature android
/// Enable this feature if you need Android support (requires java=1)
android = 0
/// @feature boost
/// Enable this feature to enable boost (is required now)
boost = 1
/// @feature clang
/// Enable this feature if you want to compile with clang++ and libc++
clang = 0
/// @feature debug
/// Enable this feature if you want to generate debug build
debug = 0
/// @feature deprecated
/// Enable this feature if you want to generate deprecated test applications
deprecated = 0
/// @feature docs
/// Enable this feature if you want to generate Doxygen library documentation
docs = 0
/// @feature kats
/// Enable this feature if you would like to build the
/// KaRL Automated Testing System
kats = 0
/// @feature lz4
/// Enable this feature if you would like to build with lz4 support (filter)
lz4 = 0
/// @feature ndds
/// Enable this feature if you would like to generate NDDS Transports
ndds = 0
/// @feature no_karl
/// Enable this feature if you do not need to evaluate KaRL scripts
no_karl = 0
/// @feature no_xml
/// Enable this feature if you do not need the TinyXML API
no_xml = 0
/// @feature opensplice
/// Enable this feature if you would like to generate OpenSplice Transports
opensplice = 0
/// @feature java
/// Enable this feature if you want to generate a JNI port for Java
java = 0
/// @feature nothreadlocal
/// Enable this feature to disable all uses of thread_local
nothreadlocal = 0
/// @feature null_lock
/// Enable this feature if you want to only use NULL locks instead of recursive
/// locks. This is a very dangerous feature for novices and should only be done
/// if you understand the ramifications of having a lock-free database and if
/// it is appropriate for your applications. It will be a performance boost,
/// of course, but it is almost unfathomable to enable this unless some kind
/// of external locking mechanism is used at the appropriate time inside of
/// a custom network transport (especially a read thread) and around knowledge
/// accessor methods like get, set, and any MADARA container methods.
null_lock = 0
/// @feature openjdk
/// Enable this feature if you want to compile with OpenJDK (requires java=1)
openjdk = 0
/// @feature python
/// Enable this feature if you want to generate a Boost.Python port for Python
python = 0
/// @feature simtime
/// Enable this feature if you want SimTime interface support
simtime = 0
/// @feature ssl
/// Enable this feature if you want SSL support
ssl = 0
/// @feature tests
/// Enable this feature if you want to generate test applications
tests = 1
/// @feature tutorials
/// Enable this feature if you want to generate tutorial applications
tutorials = 0
/// @feature warnings
/// This feature enables compilation warnings to debug MADARA core libraries
warnings = 0
/// @feature zmq
/// Enable this feature if you want ZeroMQ support
zmq = 0