-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
364 lines (307 loc) · 12.2 KB
/
CMakeLists.txt
File metadata and controls
364 lines (307 loc) · 12.2 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
SET(CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE true)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0002 OLD)
CMAKE_POLICY(SET CMP0003 OLD)
CMAKE_POLICY(SET CMP0005 OLD)
ENDIF(COMMAND CMAKE_POLICY)
PROJECT(WT)
SET(CMAKE_MODULE_PATH ${WT_SOURCE_DIR} ${WT_SOURCE_DIR}/cmake)
SET(VERSION_SERIES 3)
SET(VERSION_MAJOR 1)
SET(VERSION_MINOR 6)
SET(WT_SOVERSION 25)
SET(WTEXT_SOVERSION 25)
SET(WTHTTP_SOVERSION 24)
SET(WTFCGI_SOVERSION 24)
SET(WTISAPI_SOVERSION 2)
SET(WTDBO_SOVERSION 24)
SET(WTDBOSQLITE3_SOVERSION 24)
SET(WTDBOPOSTGRES_SOVERSION 24)
#
# Various things that must be configured by the user or packager ...
#
OPTION(BUILD_EXAMPLES "Build examples" ON)
OPTION(INSTALL_RESOURCES "Install resources directory" ON)
OPTION(ENABLE_GM "Enable GraphicsMagick, for supporting painting to raster images (PNG, GIF, ...) (WRasterImage)" ON)
OPTION(ENABLE_HARU "Enable Haru Free PDF Library, which is used to provide support for painting to PDF (WPdfImage)" ON)
OPTION(ENABLE_EXT "Build Wt Ext library with JavaScript-only widgets (http://extjs.com/)" ON)
OPTION(ENABLE_SQLITE "Build SQLite3 backend for Wt::Dbo" ON)
OPTION(ENABLE_POSTGRES "Build PostgreSQL backend for Wt::Dbo" ON)
IF(NOT SHARED_LIBS)
IF(WIN32)
OPTION(SHARED_LIBS "Compile shared libraries" OFF)
ELSE(WIN32)
OPTION(SHARED_LIBS "Compile shared libraries" ON)
ENDIF(WIN32)
ENDIF(NOT SHARED_LIBS)
# Fixup Windows declspec stuff
IF(NOT SHARED_LIBS)
SET(WT_STATIC true)
SET(WTHTTP_STATIC true)
SET(WT_EXT_STATIC true)
SET(WTDBO_STATIC true)
SET(WTDBOSQLITE3_STATIC true)
SET(WTDBOPOSTGRES_STATIC true)
ENDIF(NOT SHARED_LIBS)
IF(NOT MULTI_THREADED)
OPTION(MULTI_THREADED "Build multi-threaded httpd deamon (if possible)" ON)
ENDIF(NOT MULTI_THREADED)
SET(BUILD_SHARED_LIBS ${SHARED_LIBS})
# Default is to use cmake's boost discovery. The default will use wt's own
# boost detection mechanism if one of the following is true:
# - cmake version is too old (prior to 2.6 series)
# - BOOST_COMPILER or BOOST_VERSION was defined (compatibility with existing
# build scripts)
IF(DEFINED BOOST_COMPILER OR DEFINED BOOST_VERSION)
SET(DEFAULT_WT_BOOST_DISCOVERY TRUE)
ELSE(DEFINED BOOST_COMPILER OR DEFINED BOOST_VERSION)
SET(DEFAULT_WT_BOOST_DISCOVERY FALSE)
ENDIF(DEFINED BOOST_COMPILER OR DEFINED BOOST_VERSION)
# There's no decent boost discovery prior to cmake 2.6
IF(CMAKE_MAJOR_VERSION LESS 2)
SET(DEFAULT_WT_BOOST_DISCOVERY TRUE)
ELSEIF(CMAKE_MAJOR_VERSION EQUAL 2)
IF(CMAKE_MINOR_VERSION LESS 6)
SET(DEFAULT_WT_BOOST_DISCOVERY TRUE)
ELSEIF(CMAKE_MINOR_VERSION EQUAL 6)
IF(CMAKE_TINY_VERSION LESS 2)
# Pau says: 2.6.0 and 2.6.1 are not very good
SET(DEFAULT_WT_BOOST_DISCOVERY TRUE)
ENDIF(CMAKE_TINY_VERSION LESS 2)
ENDIF(CMAKE_MINOR_VERSION LESS 6)
ENDIF(CMAKE_MAJOR_VERSION LESS 2)
SET(WT_BOOST_DISCOVERY ${DEFAULT_WT_BOOST_DISCOVERY} CACHE BOOL "Use Wt's boost discovery method rather than the cmake 2.6+ method")
SET(LIB_INSTALL_DIR "lib" CACHE STRING
"Name for library directory within ${CMAKE_INSTALL_PREFIX}")
IF(WIN32)
SET(RUNDIR "c:/witty") # Does not apply to win32
IF(NOT DEFINED CONFIGDIR)
SET(CONFIGDIR ${RUNDIR} CACHE STRING "Path for the configuration files")
ENDIF(NOT DEFINED CONFIGDIR)
SET(USERLIB_PREFIX_DEFAULT "c:/libraries")
IF(MSVC)
SET(BUILD_PARALLEL "/MP" CACHE STRING "MSVC option for parallel builds (/MP or /MPx)")
ENDIF(MSVC)
ELSE(WIN32)
SET(RUNDIR "/var/run/wt" CACHE PATH
"Default path for wt session management (only used by FCGI connector; not relative to CMAKE_INSTALL_PREFIX)")
IF( NOT DEFINED CONFIGDIR )
SET(CONFIGDIR "/etc/wt" CACHE STRING "Path for the configuration files")
ENDIF( NOT DEFINED CONFIGDIR )
SET(USERLIB_PREFIX_DEFAULT "/usr")
ENDIF(WIN32)
IF(DEFINED USERLIB_ROOT) # Deprecated <= 3.1.3
SET(USERLIB_PREFIX ${USERLIB_ROOT} CACHE PATH
"Installation prefix of dependency libraries (by USERLIB_ROOT)")
ELSE(DEFINED USERLIB_ROOT)
SET(USERLIB_PREFIX ${USERLIB_PREFIX_DEFAULT} CACHE PATH
"Installation prefix of dependency libraries")
ENDIF(DEFINED USERLIB_ROOT)
IF(WIN32)
SET(BOOST_PREFIX_DEFAULT "c:/Program Files/Boost")
OPTION(BOOST_DYNAMIC "Link to boost DLLs (OFF means static link)" OFF)
ELSE(WIN32)
SET(BOOST_PREFIX_DEFAULT ${USERLIB_PREFIX})
ENDIF(WIN32)
IF(DEFINED BOOST_DIR) # Deprecated <= 3.1.3
SET(BOOST_PREFIX ${BOOST_DIR} CACHE PATH
"Installation prefix of boost libraries (by BOOST_DIR)")
ELSE(DEFINED BOOST_DIR)
SET(BOOST_PREFIX ${BOOST_PREFIX_DEFAULT} CACHE PATH
"Installation prefix of boost libraries")
ENDIF(DEFINED BOOST_DIR)
SET(FCGI_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of fcgi library (overrides USERLIB_PREFIX)")
SET(POSTGRES_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of postgresql library (overrides USERLIB_PREFIX)")
SET(MYSQL_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of mysql and mysql++ libraries "
"(overrides USERLIB_PREFIX)")
SET(SQLITE3_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of sqlite3 library (overrides USERLIB_PREFIX)")
SET(HARU_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of libharu library (overrides USERLIB_PREFIX)")
SET(SSL_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of SSL library (overrides USERLIB_PREFIX)")
SET(ZLIB_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of zlib library (overrides USERLIB_PREFIX)")
SET(GM_PREFIX ${USERLIB_PREFIX} CACHE PATH
"Installation prefix of GraphicsMgick library (overrides GM_PREFIX)")
OPTION(DEBUG "Support for debugging, must be enabled also in wt_config.xml" OFF)
IF(CYGWIN)
OPTION(BUILD_TESTS "Build Wt tests" OFF)
ELSE(CYGWIN)
OPTION(BUILD_TESTS "Build Wt tests" ON)
ENDIF(CYGWIN)
ADD_DEFINITIONS(-DWT_WITH_OLD_INTERNALPATH_API)
IF(CYGWIN)
ADD_DEFINITIONS(-D__USE_W32_SOCKETS)
ENDIF(CYGWIN)
MARK_AS_ADVANCED( CONFIGDIR )
SET(CONFIGURATION "${CONFIGDIR}/wt_config.xml" CACHE PATH "Path to the wt configuration file")
SET(WTHTTP_CONFIGURATION ${CONFIGDIR}/wthttpd CACHE PATH "Path for the wthttpd configuration file")
SET(WEBUSER apache CACHE STRING "Webserver username (e.g. apache or www)")
SET(WEBGROUP apache CACHE STRING "Webserver groupname (e.g. apache or www or users)")
IF(WIN32)
SET(CONNECTOR_FCGI FALSE)
IF(NOT MINGW)
OPTION(CONNECTOR_ISAPI "Compile in ISAPI connector (libwtisapi) ?" ON)
ENDIF(NOT MINGW)
ELSE(WIN32)
OPTION(CONNECTOR_FCGI "Compile in FCGI connector (libwtfcgi) ?" ON)
SET(CONNECTOR_ISAPI OFF)
ENDIF(WIN32)
OPTION(CONNECTOR_HTTP "Compile in stand-alone httpd connector (libwthttp) ?" ON)
SET(EXAMPLES_CONNECTOR wthttp CACHE STRING "Connector used for examples")
INCLUDE(cmake/WtFindBoost.txt)
INCLUDE(cmake/WtFindFcgi.txt)
INCLUDE(cmake/WtFindZlib.txt)
INCLUDE(cmake/WtFindSsl.txt)
INCLUDE(cmake/WtFindMysqlpp.txt)
INCLUDE(cmake/WtFindPostgresql.txt)
INCLUDE(cmake/WtFindAsciidoc.txt)
INCLUDE(cmake/WtFindHaru.txt)
INCLUDE(cmake/WtFindGm.txt)
FIND_PACKAGE(Qt4)
IF(QT_FOUND)
INCLUDE(${QT_USE_FILE})
ENDIF(QT_FOUND)
INCLUDE(FindThreads)
IF(NOT BOOST_WT_FOUND)
SET(ERR
"Could not find a boost installation in " ${BOOST_PREFIX} ".\n\n"
"There are two methods in Wt to find boost:\n\n"
"1. Find boost through cmake (recommended)\n"
"This requires cmake 2.6, and is in "
"that case the default (unless BOOST_COMPILER or BOOST_VERSION is "
"defined). This method requires a multi-threaded boost installation.\n"
"You may need to add your boost version number to "
"Boost_ADDITIONAL_VERSIONS, and/or set BOOST_PREFIX to the location "
"where boost is installed.\n\n"
"2. Use the Wt-proprietary method to find boost.\n"
"This requires you to define three variables:\n"
"BOOST_PREFIX: set to the directory where you installed boost\n"
"BOOST_COMPILER: set to the compiler signature as you find them in "
"library names (e.g.: gcc42)\n"
"BOOST_VERSION: set to the boost version, again as you find them in "
"the library names (e.g.: 1_38)\n\n"
"Note 1: WT_BOOST_DISCOVERY is the variable that selects the boost "
"discovery method. When set to false, method 1 is used (default if "
"cmake version is recent enough and BOOST_COMPILER and BOOST_VERSION "
"are not defined). When set to true, method 2 is used.\n"
"Note 2: the code to discover boost is located in cmake/WtFindBoost.txt\n"
"Note 3: on windows, set BOOST_PREFIX to the full path, eg "
"c:/Program Files/boost/boost_1_38\n\n"
"Wt requires the following C++ boost libraries: date_time, regex, program_options, signals, and optionally thread")
MESSAGE(FATAL_ERROR ${ERR})
ENDIF(NOT BOOST_WT_FOUND)
IF(BOOST_WT_MT_FOUND)
IF(MULTI_THREADED)
MESSAGE("** Enabling multi threading.")
SET(MULTI_THREADED_BUILD true)
ADD_DEFINITIONS(-DWT_THREADED -D_REENTRANT -DBOOST_SPIRIT_THREADSAFE)
ELSE(MULTI_THREADED)
MESSAGE("** Disabling multi threading.")
SET(MULTI_THREADED_BUILD false)
ADD_DEFINITIONS(-DBOOST_DISABLE_THREADS -DSQLITE_THREADSAFE=0)
ENDIF(MULTI_THREADED)
ELSE(BOOST_WT_MT_FOUND)
SET(MULTI_THREADED_BUILD false)
MESSAGE("** Disabling multi threading: could not find multi-threaded boost libraries")
ADD_DEFINITIONS(-DBOOST_DISABLE_THREADS -DSQLITE_THREADSAFE=0)
ENDIF(BOOST_WT_MT_FOUND)
FIND_PACKAGE(Doxygen)
# Boost is used nearly everywhere, so we can put these here
INCLUDE_DIRECTORIES(${BOOST_INCLUDE_DIRS})
LINK_DIRECTORIES(${BOOST_LIB_DIRS})
IF(WIN32)
IF(BOOST_DYNAMIC)
ADD_DEFINITIONS(-DBOOST_ALL_DYN_LINK)
ELSE(BOOST_DYNAMIC)
# You could expect that this is the default when BOOST_ALL_DYN_LINK
# is not set, but this is problematic for cygwin
ADD_DEFINITIONS(-DBOOST_THREAD_USE_LIB)
ENDIF(BOOST_DYNAMIC)
ADD_DEFINITIONS(
-D_CRT_SECURE_NO_WARNINGS
-Dinline=__inline
-D_SCL_SECURE_NO_WARNINGS
)
ENDIF(WIN32)
IF(NOT CMAKE_BUILD_TYPE)
SET(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel."
FORCE)
ENDIF(NOT CMAKE_BUILD_TYPE)
IF(DEBUG)
SET(WT_DEBUG_ENABLED 1)
ELSE(DEBUG)
SET(WT_DEBUG_ENABLED 0)
ENDIF(DEBUG)
ADD_CUSTOM_TARGET(doc)
IF (ASCIIDOC_FOUND)
MACRO (ASCIIDOC_FILE target infile outfile)
ADD_CUSTOM_TARGET(${target}
${ASCIIDOC_EXECUTABLE} -a toc -a numbered -o ${outfile} ${infile}
COMMENT "Asciidoc ${infile}")
ADD_DEPENDENCIES(doc ${target})
ENDMACRO (ASCIIDOC_FILE)
ENDIF (ASCIIDOC_FOUND)
IF (DOXYGEN_FOUND)
ADD_CUSTOM_TARGET(doxygen
${DOXYGEN_EXECUTABLE}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
COMMENT "Doxygen ...")
ADD_DEPENDENCIES(doc doxygen)
ADD_CUSTOM_TARGET(doxygen-examples
${DOXYGEN_EXECUTABLE}
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/examples
COMMENT "Doxygen for examples ...")
ADD_DEPENDENCIES(doc doxygen-examples)
ENDIF (DOXYGEN_FOUND)
SUBDIRS(src)
IF(BUILD_EXAMPLES)
IF(WIN32)
SUBDIRS(examples)
ELSE(WIN32)
SUBDIRS(EXCLUDE_FROM_ALL examples)
ENDIF(WIN32)
ENDIF(BUILD_EXAMPLES)
IF(BUILD_TESTS)
SUBDIRS(test)
ENDIF(BUILD_TESTS)
IF( NOT DEFINED WT_CMAKE_FINDER_INSTALL_DIR )
SET( WT_CMAKE_FINDER_INSTALL_DIR "share/cmake-2.4/Modules" )
ENDIF( NOT DEFINED WT_CMAKE_FINDER_INSTALL_DIR)
INSTALL(FILES ${PROJECT_SOURCE_DIR}/cmake/FindWt.cmake DESTINATION
${CMAKE_INSTALL_PREFIX}/${WT_CMAKE_FINDER_INSTALL_DIR} )
IF(INSTALL_RESOURCES)
INSTALL(DIRECTORY ${PROJECT_SOURCE_DIR}/resources DESTINATION
${CMAKE_INSTALL_PREFIX}/share/Wt/)
ENDIF(INSTALL_RESOURCES)
IF(NOT EXISTS ${DESTDIR}${CONFIGDIR}/wt_config.xml)
INSTALL(FILES ${WT_BINARY_DIR}/wt_config.xml DESTINATION ${CONFIGDIR})
ENDIF (NOT EXISTS ${DESTDIR}${CONFIGDIR}/wt_config.xml)
IF(ENABLE_HARU AND HARU_FOUND)
SET(HAVE_HARU ON)
SET(WT_HAS_WPDFIMAGE true)
ENDIF(ENABLE_HARU AND HARU_FOUND)
IF(ENABLE_GM AND GM_FOUND)
SET(HAVE_GM ON)
SET(WT_HAS_WRASTERIMAGE true)
ENDIF(ENABLE_GM AND GM_FOUND)
# Compile time constants & make sure our build finds it
FILE(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/Wt)
SET(WCONFIG_H_PATH ${CMAKE_CURRENT_BINARY_DIR}/Wt/WConfig.h)
CONFIGURE_FILE(
${WT_SOURCE_DIR}/WConfig.h.in
${WCONFIG_H_PATH}
)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_BINARY_DIR})
INSTALL_FILES(/include/Wt FILES ${WCONFIG_H_PATH})
# Generate wt_config.xml from wt_config.xml.in
CONFIGURE_FILE(
${WT_SOURCE_DIR}/wt_config.xml.in
${WT_BINARY_DIR}/wt_config.xml
)