-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeOptions.cmake
More file actions
29 lines (25 loc) · 797 Bytes
/
Copy pathCMakeOptions.cmake
File metadata and controls
29 lines (25 loc) · 797 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
option(
PACEMAKER_BUILD_REQUIREMENTS
"Enable generation of SRS and TS documents from LaTeX source files. Default: ${PROJECT_IS_TOP_LEVEL}. Values: { ON, OFF }."
${PROJECT_IS_TOP_LEVEL}
)
option(
PACEMAKER_BUILD_DOCS
"Enable generation of Doxygen Source Documentation. Default: ${PROJECT_IS_TOP_LEVEL}. Values { ON, OFF }."
${PROJECT_IS_TOP_LEVEL}
)
option(
PACEMAKER_BUILD_EXAMPLES
"Enable building examples. Default: ${PROJECT_IS_TOP_LEVEL}. Values { ON, OFF }."
${PROJECT_IS_TOP_LEVEL}
)
option(
PACEMAKER_BUILD_TESTS
"Enable building tests and test infrastructure. Default: ${PROJECT_IS_TOP_LEVEL}. Values: { ON, OFF }."
${PROJECT_IS_TOP_LEVEL}
)
option(
PACEMAKER_BUILD_LIBRARY
"Enable building pacemaker library. Default: ON. Values: { ON, OFF }."
ON
)