forked from jredmondson/gams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.features
40 lines (30 loc) · 1.09 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
///============================================================================
///
/// @file default.features
///
/// @brief Defines features that control project builds.
///
/// @author James Edmondson
///
///============================================================================
/// @feature tests
/// Enable this feature if you want to generate test applications
tests = 1
/// @feature dronerk
/// Enable this feature if you want to support the Drone RK platform
dronerk = 0
/// @feature vrep
/// Enable this feature if you want to support the VREP simulator
vrep = 1
/// @feature vrep
/// Enable this feature if you want to support Java
java = 0
/// @feature vrep
/// Enable this feature if you want to support Android (requires java=1)
android = 0
/// @feature openjdk
/// Enable this feature if you want to compile with OpenJDK (requires java=1)
openjdk = 0
/// @feature docs
/// Enable this feature if you want to generate documentation
docs = 0