File: options.cmake

package info (click to toggle)
lucene%2B%2B 3.0.9-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 19,796 kB
  • sloc: cpp: 174,273; ansic: 26,951; python: 8,626; sh: 524; makefile: 31
file content (100 lines) | stat: -rw-r--r-- 1,771 bytes parent folder | download | duplicates (2)
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
# lucene++ project build options
#========================================================================


# linker args
#========================================================================

option(LUCENE_BUILD_SHARED
"Build shared library"
ON
)

option(ENABLE_PACKAGING
"Create build scripts for creating lucene++ packages"
OFF
)

option(LUCENE_USE_STATIC_BOOST_LIBS
"Use static boost libraries"
OFF
)

option(ENABLE_BOOST_INTEGER
"Enable boost integer types"
OFF
)

option(ENABLE_CYCLIC_CHECK
"Enable cyclic checking"
OFF
)


# build options
#========================================================================

option(
    ENABLE_TEST
    "Enable the tests"
    ON)

option(
    ENABLE_DEMO
    "Enable building demo applications"
    ON)

OPTION(
    ENABLE_DOCS
    "Build the Lucene++ documentation."
    OFF)

OPTION(
    ENABLE_CONTRIB
    "Enable building contrib library"
    ON)

# documentation options
#========================================================================

mark_as_advanced(DOCS_HTML_HELP)
OPTION(
    DOCS_HTML_HELP
    "Doxygen should compile HTML into a Help file (CHM)."
    NO )

mark_as_advanced(DOCS_HTML)
OPTION(
    DOCS_HTML
    "Doxygen should build HTML documentation."
    YES )

mark_as_advanced(DOCS_XML)
OPTION(
    DOCS_XML
    "Doxygen should build XML documentation."
    NO )
    
mark_as_advanced(DOCS_RTF)
OPTION(
    DOCS_RTF
    "Doxygen should build RTF documentation."
    NO )

mark_as_advanced(DOCS_MAN)
OPTION(
    DOCS_MAN
    "Doxygen should build man documentation."
    NO )
    
mark_as_advanced(DOCS_TAGFILE)
OPTION(
    DOCS_TAGFILE
    "Doxygen should build a tagfile."
    NO )

mark_as_advanced(DOCS_LATEX)
OPTION(
    DOCS_LATEX
    "Doxygen should build Latex documentation."
    NO )