forked from davidmoreno/onion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
254 lines (214 loc) · 7.8 KB
/
CMakeLists.txt
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
cmake_minimum_required (VERSION 2.8)
cmake_policy(VERSION 2.8)
project(libonion)
# Some tweak parameters
SET(ONION_USE_SSL true CACHE BOOL "Use SSL, requires GnuTLS")
SET(ONION_USE_PAM true CACHE BOOL "Compile PAM handler. Needs libpam")
SET(ONION_USE_PTHREADS true CACHE BOOL "Compile with pthreads support. Needed for O_THREAD and O_POOL modes")
SET(ONION_USE_PNG true CACHE BOOL "Adds support for simple image handler")
SET(ONION_USE_JPEG true CACHE BOOL "Adds support for simple image handler")
SET(ONION_USE_XML2 true CACHE BOOL "Adds support for XML2 lib, which is needed for WebDAV handler")
SET(ONION_USE_SYSTEMD true CACHE BOOL "Adds simple support for systemd")
SET(ONION_USE_SQLITE3 true CACHE BOOL "Adds support for sqlite3 sessions")
SET(ONION_USE_REDIS true CACHE BOOL "Adds support for redis sessions")
SET(ONION_USE_GC true CACHE BOOL "Compile Boehm GC examples")
SET(ONION_USE_TESTS false CACHE BOOL "Compile the tests")
SET(ONION_EXAMPLES true CACHE BOOL "Compile the examples")
SET(ONION_USE_BINDINGS_CPP true CACHE BOOL "Compile the CPP bindings")
SET(ONION_POLLER default CACHE string "Default poller to use: default | epoll | libev | libevent")
########
execute_process(
COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/git-version-gen" "${CMAKE_CURRENT_SOURCE_DIR}"
OUTPUT_VARIABLE ONION_VERSION)
message(STATUS "Onion version is ${ONION_VERSION}")
if (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
SET(ONION_USE_PAM false)
endif (${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
SET(LIBPATH /usr/lib /usr/local/lib)
IF (NOT DEFINED CMAKE_INSTALL_BINDIR)
SET(CMAKE_INSTALL_BINDIR bin)
ENDIF (NOT DEFINED CMAKE_INSTALL_BINDIR)
IF (NOT DEFINED CMAKE_INSTALL_LIBDIR)
SET(CMAKE_INSTALL_LIBDIR lib)
ENDIF (NOT DEFINED CMAKE_INSTALL_LIBDIR)
IF (NOT DEFINED INCLUDE_PATH)
SET(INCLUDE_PATH /usr/include)
ENDIF (NOT DEFINED INCLUDE_PATH)
IF (NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
SET(CMAKE_INSTALL_INCLUDEDIR include/onion)
ENDIF(NOT DEFINED CMAKE_INSTALL_INCLUDEDIR)
if (${ONION_POLLER} STREQUAL "default")
if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set (ONION_POLLER "epoll")
else(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
set (ONION_POLLER "libev")
endif(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
endif (${ONION_POLLER} STREQUAL "default")
message(STATUS "Using ${ONION_POLLER} as poller")
if (${ONION_USE_SSL})
find_library(GNUTLS_LIB NAMES gnutls PATH ${LIBPATH})
find_library(GCRYPT_LIB NAMES gcrypt PATH ${LIBPATH})
if (GNUTLS_LIB AND GCRYPT_LIB)
set(GNUTLS_ENABLED true)
message(STATUS "Gnutls found. SSL support is compiled in.")
else(GNUTLS_LIB AND GCRYPT_LIB)
message("Gnutls or gcrypt not found. SSL support is not compiled in.")
endif(GNUTLS_LIB AND GCRYPT_LIB)
endif(${ONION_USE_SSL})
if (${ONION_USE_SQLITE3})
find_library(SQLITE3_LIB NAMES sqlite3 PATH ${LIBPATH})
if (SQLITE3_LIB)
set(SQLITE3_ENABLED true)
message(STATUS "SQLite found. Sqlite session support is compiled in.")
else(SQLITE3_LIB)
message("SQLite not found. Sqlite session support is not compiled in.")
endif(SQLITE3_LIB)
endif(${ONION_USE_SQLITE3})
if (${ONION_USE_REDIS})
find_library(REDIS_LIB NAMES hiredis PATH ${LIBPATH})
if(REDIS_LIB)
set(REDIS_ENABLED true)
message(STATUS "Hiredis found. Redis session support is compiled in.")
else(REDIS_LIB)
message("Hiredis not found. Redis session support is not compiled in.")
endif(REDIS_LIB)
endif(${ONION_USE_REDIS})
if (${ONION_USE_PTHREADS})
find_library(PTHREADS_LIB NAMES pthread PATH ${LIBPATH})
if(PTHREADS_LIB)
message(STATUS "pthreads found. Threading support is compiled in.")
set(PTHREADS true)
else(PTHREADS_LIB)
message("pthreads not found. Threading is not supported.")
endif(PTHREADS_LIB)
endif(${ONION_USE_PTHREADS})
if (${ONION_USE_XML2})
find_library(XML2_LIB NAMES xml2 PATH ${LIBPATH})
find_library(Z_LIB NAMES z PATH ${LIBPATH})
find_path(XML2_HEADERS NAMES libxml/xmlwriter.h HINTS ${INCLUDE_PATH} PATH_SUFFIXES libxml2)
if(XML2_HEADERS)
message(STATUS "libxml2 found. WebDAV support is compiled in.")
set(XML2_ENABLED true)
else(XML2_HEADERS)
message("libxml2 not found. WebDAV is not supported. ${XML2_HEADERS} ${XML2_LIB}")
endif(XML2_HEADERS)
endif(${ONION_USE_XML2})
if (${ONION_USE_PAM})
find_library(PAM_LIB NAMES pam pam_misc PATH ${LIBPATH})
if (PAM_LIB)
set(PAM_ENABLED true)
message(STATUS "pam found. PAM support is compiled in in handlers.")
else (PAM_LIB)
message("pam not found. No PAM support.")
endif (PAM_LIB)
endif (${ONION_USE_PAM})
if (${ONION_USE_PNG})
find_library(PNG_LIB NAMES png PATH ${LIBPATH})
if (PNG_LIB)
set(PNG_ENABLED true)
set(PNG_LIB ${PNG_LIB})
message(STATUS "libpng found. png support is compiled in at extras.")
find_library(CAIRO_LIB NAMES cairo PATH ${LIBPATH})
find_file(CAIRO_HEADER cairo/cairo.h ${INCLUDE_PATH})
if (CAIRO_HEADER)
set(CAIRO_ENABLED true)
set(CAIRO_LIB ${CAIRO_LIB})
message(STATUS "libcairo found. Adding cairo examples. ${CAIRO_LIB}")
else (CAIRO_HEADER)
message(STATUS "libcairo NOT found.")
endif (CAIRO_HEADER)
else (PNG_LIB)
message("libpng not found. No png support.")
endif (PNG_LIB)
endif (${ONION_USE_PNG})
if (${ONION_USE_JPEG})
find_library(JPEG_LIB NAMES jpeg PATH ${LIBPATH})
if (JPEG_LIB)
set(JPEG_ENABLED true)
set(JPEG_LIB ${JPEG_LIB})
message(STATUS "libjpeg found. jpeg support is compiled in at extras.")
else (JPEG_LIB)
message("libjpeg not found. No jpeg support.")
endif (JPEG_LIB)
endif (${ONION_USE_JPEG})
if (${ONION_USE_GC})
find_library(GC_LIB NAMES gc PATH ${LIBPATH})
find_file(GC_HEADER gc.h ${INCLUDE_PATH})
if (GC_LIB AND GC_HEADER)
message(STATUS "libgc found, compiling Boehm GC examples")
set(GC_ENABLED true)
else (GC_LIB AND GC_HEADER)
message(STATUS "libgc not found, NOT compiling Boehm GC examples")
endif (GC_LIB AND GC_HEADER)
endif (${ONION_USE_GC})
find_library(CURL_LIB NAMES curl PATH ${LIBPATH})
if(CURL_LIB)
message(STATUS "curl found. Some extra test are compiled.")
set(CURL true)
else(CURL_LIB)
message("curl not found. Some examples wil not be built.")
endif(CURL_LIB)
if (${ONION_USE_SYSTEMD})
find_library(SD_DAEMON_LIB NAMES systemd PATH ${LIBPATH})
if (SD_DAEMON_LIB)
set(SYSTEMD_ENABLED true)
message(STATUS "libsystemd found. Systemd support compiled in.")
else(SD_DAEMON_LIB)
message("libsystemd not found. Systemd support is not compiled in. Install libsystemd-dev | systemd-devel")
endif(SD_DAEMON_LIB)
endif(${ONION_USE_SYSTEMD})
# defines
if (GNUTLS_ENABLED)
add_definitions(-DHAVE_GNUTLS)
endif(GNUTLS_ENABLED)
if (PTHREADS)
add_definitions(-DHAVE_PTHREADS)
endif(PTHREADS)
if (PAM_ENABLED)
add_definitions(-DHAVE_PAM)
endif(PAM_ENABLED)
if (XML2_ENABLED)
add_definitions(-DHAVE_WEBDAV)
endif(XML2_ENABLED)
if (SYSTEMD_ENABLED)
add_definitions(-DHAVE_SYSTEMD)
endif (SYSTEMD_ENABLED)
if (SQLITE3_ENABLED)
add_definitions(-DHAVE_SQLITE3)
endif (SQLITE3_ENABLED)
if (REDIS_ENABLED)
add_definitions(-DHAVE_REDIS)
endif (REDIS_ENABLED)
add_definitions(-D_BSD_SOURCE)
add_definitions(-D_DEFAULT_SOURCE)
add_definitions(-D_POSIX_C_SOURCE=200112L)
if(PNG_ENABLED)
add_definitions(-DPNG_ENABLED)
endif(PNG_ENABLED)
if(JPEG_ENABLED)
add_definitions(-DJPEG_ENABLED)
endif(JPEG_ENABLED)
add_definitions(-DONION_VERSION="${ONION_VERSION}")
##
IF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
add_definitions(-D__DEBUG__)
SET(CMAKE_C_FLAGS "-Wall -O0 -fPIC ${CMAKE_C_FLAGS}")
SET(CMAKE_CXX_FLAGS "-Wall -O0 -fPIC ${CMAKE_CXX_FLAGS}")
ELSE (${CMAKE_BUILD_TYPE} MATCHES "Debug")
SET(CMAKE_C_FLAGS "-Wall -O2 -fPIC ${CMAKE_C_FLAGS}")
SET(CMAKE_CXX_FLAGS "-Wall -O2 -fPIC ${CMAKE_CXX_FLAGS}")
ENDIF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
project (onion)
INCLUDE(CPackConfig.cmake)
INCLUDE(CPack)
add_subdirectory(src)
add_subdirectory(tools)
SET(OTEMPLATE otemplate)
SET(OPACK opack)
if (${ONION_EXAMPLES})
add_subdirectory(examples)
endif (${ONION_EXAMPLES})
if (${ONION_USE_TESTS})
enable_testing()
endif(${ONION_USE_TESTS})
add_subdirectory(tests)