forked from johnsonjh/duma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
368 lines (278 loc) · 13.7 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
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
364
365
366
367
368
cmake_minimum_required(VERSION 2.8)
project(DUMA)
# see INSTALL on how to build DUMA
option( DUMA_WITH_GLOBAL_MALLOC_FREE "export malloc/free" ON) # NOT DUMA_NO_GLOBAL_MALLOC_FREE
option( DUMA_WITH_EXPLICIT_INIT "duma_init() is to be called from user" OFF) # DUMA_EXPLICIT_INIT
option( DUMA_WITH_THREAD_SAFETY "build thread safe duma library" ON) # NOT DUMA_NO_THREAD_SAFETY
option( DUMA_WITH_STRERROR "use strerror - leads to recusion on some platforms!" ON) # NOT DUMA_NO_STRERROR
option( DUMA_WITH_OLD_NEW_MACRO "use NEW_ELEM() / NEW_ARRAY() macros - DEL_ELEM/DEL_ARRAY have to be used anyway" OFF) # DUMA_OLD_NEW_MACRO
option( DUMA_SHARED_WITH_CPP_SUPPORT "have new/delete shared library" ON) # NOT DUMA_SO_NO_CPP_SUPPORT
option( DUMA_SHARED_WITH_LEAK_DETECTION "shared library: have leak detection" ON) # NOT DUMA_SO_NO_LEAKDETECTION
option( DUMA_STATIC_WITH_LEAK_DETECTION "static library: have leak detection" ON) # NOT DUMA_LIB_NO_LEAKDETECTION
option( DUMA_SHARED_PREFER_ATEXIT "shared library: have atexit() (vs. compiler's destructor)" OFF) # DUMA_SO_PREFER_ATEXIT
option( DUMA_STATIC_PREFER_ATEXIT "static library: have atexit() (vs. compiler's destructor)" OFF) # DUMA_LIB_PREFER_ATEXIT
option( DUMA_SHARED_PREFER_GETENV "shared library: have getenv() (vs. char **environ)" OFF) # DUMA_SO_PREFER_GETENV
option( DUMA_STATIC_PREFER_GETENV "static library: have getenv() (vs. char **environ)" OFF) # DUMA_LIB_PREFER_GETENV
option( DUMA_SHARED_NO_HANG_MSG "shared library: suppress the extra messages around atexit()" OFF) # DUMA_SO_NO_HANG_MSG
option( DUMA_STATIC_NO_HANG_MSG "static library: suppress the extra messages around atexit()" OFF) # DUMA_LIB_NO_HANG_MSG
option(BUILD_TESTS "build and run tests" ON)
option(BUILD_EXAMPLES "build examples" ON)
# C90 requires the gcc extensions for function attributes like always_inline
# C99 provides the function attributes: no gcc extensions required
# set(CMAKE_C_STANDARD 99)
# set(CMAKE_C_EXTENSIONS OFF)
# set(CMAKE_CXX_STANDARD 98)
# set(CMAKE_CXX_STANDARD_REQUIRED ON)
# set(CMAKE_CXX_EXTENSIONS OFF)
##############################################################
# howto create the header
# https://stackoverflow.com/questions/36084785/building-a-tool-immediately-so-it-can-be-used-later-in-same-cmake-run?noredirect=1&lq=1
if(EARLY_BUILD)
# This is the nested build and we will only be asked to
# build the createconf target (see (c) below)
add_subdirectory(confdir)
# End immediately, we don't want anything else in the nested build
return()
endif()
# This is the main build, setup and execute the nested build
# to ensure the createconf executable exists before continuing
# (a) When cross compiling, we cannot re-use the same binary dir
# because the host and target are different architectures
if(CMAKE_CROSSCOMPILING)
set(workdir "${CMAKE_BINARY_DIR}/host")
execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory "${workdir}")
else()
set(workdir "${CMAKE_BINARY_DIR}")
endif()
# (b) Nested CMake run. May need more -D... options than shown here.
execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}"
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
-DCMAKE_MAKE_PROGRAM=${CMAKE_MAKE_PROGRAM}
-DEARLY_BUILD=ON
${CMAKE_SOURCE_DIR}
WORKING_DIRECTORY "${workdir}")
# (c) Build just createconf in the nested build. Don't specify a --config
# because we cannot know what config the developer will be using
# at this point. For non-multi-config generators, we've already
# specified CMAKE_BUILD_TYPE above in (b).
execute_process(COMMAND ${CMAKE_COMMAND} --build . --target createconf
WORKING_DIRECTORY "${workdir}")
# (d) We want everything from confdir in our main build,
# not just the createconf target
#add_subdirectory(confdir)
# (e) Run createconf on the sources to generate a CMakeLists.txt in the
# ${CMAKE_BINARY_DIR}/foobar directory. Note that because we want
# to support cross compiling, working out the location of the
# executable is a bit more tricky. We cannot know whether the user
# wants debug or release build types for multi-config generators
# so we have to choose one. We cannot query the target properties
# because they are only known at generate time, which is after here.
# Best we can do is hardcode some basic logic.
if(MSVC)
set(createconfsuffix "Debug/createconf.exe")
elseif(CMAKE_GENERATOR STREQUAL "Xcode")
set(createconfsuffix "Debug/createconf")
else()
set(createconfsuffix "createconf")
endif()
set(createconf_EXECUTABLE "${workdir}/confdir/${createconfsuffix}")
add_custom_command( OUTPUT "${CMAKE_SOURCE_DIR}/duma_config.h"
COMMAND "${createconf_EXECUTABLE}"
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
)
# -outdir foobar ${CMAKE_SOURCE_DIR}/foo.my ${CMAKE_SOURCE_DIR}/bar.my)
# (f) Now pull that generated CMakeLists.txt into the main build.
# It will create a CMake library target called foobar.
# add_subdirectory(${CMAKE_BINARY_DIR}/foobar ${CMAKE_BINARY_DIR}/foobar-build)
# (g) Another target which links to the foobar library
# and includes headers from there
#add_executable(gumby gumby.cpp)
#target_link_libraries(gumby PUBLIC foobar)
#target_include_directories(gumby PUBLIC foobar)
##############################################################
add_custom_command( OUTPUT "${CMAKE_SOURCE_DIR}/verinfo.h"
COMMAND "${CMAKE_SOURCE_DIR}/make_git_source_version.sh"
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"
)
set( DUMA_PUB_HDRS
noduma.h
duma.h
dumapp.h
"${CMAKE_SOURCE_DIR}/duma_config.h"
duma_sem.h # not for public use .. but required from dumapp.h
)
set( DUMA_HDRS
${DUMA_PUB_HDRS}
# createconf.h # required but we can't put dependency here
verinfo.h
duma_hlp.h
paging.h
print.h
)
set( DUMA_SRCS
duma.c
dumapp.cpp
print.c
sem_inc.c
)
add_library(DUMA_STATIC STATIC ${DUMA_SRCS} ${DUMA_HDRS})
target_include_directories(DUMA_STATIC INTERFACE "${CMAKE_SOURCE_DIR}")
if (NOT DUMA_WITH_GLOBAL_MALLOC_FREE)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_NO_GLOBAL_MALLOC_FREE)
endif()
if (DUMA_WITH_EXPLICIT_INIT)
target_compile_definitions(DUMA_STATIC PUBLIC DUMA_EXPLICIT_INIT)
endif()
if (NOT DUMA_WITH_THREAD_SAFETY)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_NO_THREAD_SAFETY)
else()
target_link_libraries(DUMA_STATIC PUBLIC pthread)
endif()
if (NOT DUMA_WITH_STRERROR)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_NO_STRERROR)
endif()
if (NOT DUMA_WITH_OLD_NEW_MACRO)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_OLD_NEW_MACRO)
endif()
if (NOT DUMA_STATIC_WITH_LEAK_DETECTION)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_LIB_NO_LEAKDETECTION)
endif()
if (DUMA_STATIC_PREFER_ATEXIT)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_LIB_PREFER_ATEXIT)
endif()
if (DUMA_STATIC_PREFER_GETENV)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_LIB_PREFER_GETENV)
endif()
if (DUMA_STATIC_NO_HANG_MSG)
target_compile_definitions(DUMA_STATIC PRIVATE DUMA_LIB_NO_HANG_MSG)
endif()
add_library(DUMA_SHARED SHARED ${DUMA_SRCS} ${DUMA_HDRS})
target_include_directories(DUMA_SHARED INTERFACE "${CMAKE_SOURCE_DIR}")
if (NOT DUMA_SHARED_WITH_CPP_SUPPORT)
target_compile_definitions(DUMA_SHARED PRIVATE DUMA_SO_NO_CPP_SUPPORT)
endif()
if (NOT DUMA_SHARED_WITH_LEAK_DETECTION)
target_compile_definitions(DUMA_SHARED PRIVATE DUMA_SO_NO_LEAKDETECTION)
endif()
if (DUMA_SHARED_PREFER_ATEXIT)
target_compile_definitions(DUMA_SHARED PRIVATE DUMA_SO_PREFER_ATEXIT)
endif()
if (DUMA_SHARED_PREFER_GETENV)
target_compile_definitions(DUMA_SHARED PRIVATE DUMA_SO_PREFER_GETENV)
endif()
if (DUMA_SHARED_NO_HANG_MSG)
target_compile_definitions(DUMA_SHARED PRIVATE DUMA_SO_NO_HANG_MSG)
endif()
if (WIN32 AND MINGW)
message(STATUS "MINGW")
else()
message(STATUS "target link pthread to DUMA_SHARED")
target_link_libraries( DUMA_SHARED PUBLIC pthread )
endif()
# produce same filenames - as GNUmakefile
set_target_properties(DUMA_STATIC PROPERTIES OUTPUT_NAME "duma")
set_target_properties(DUMA_SHARED PROPERTIES OUTPUT_NAME "duma")
set_target_properties(DUMA_SHARED PROPERTIES VERSION 0.0.0 SOVERSION 0)
# todo: install readme, man file, ..?
install( TARGETS DUMA_STATIC DUMA_SHARED DESTINATION lib)
install( FILES ${DUMA_PUB_HDRS} DESTINATION include)
install( FILES duma.sh DESTINATION bin
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
GROUP_EXECUTE GROUP_READ
WORLD_EXECUTE WORLD_READ
)
add_custom_target(uninstall
"${CMAKE_COMMAND}" -P "${CMAKE_SOURCE_DIR}/uninstall.cmake"
)
enable_testing()
if (BUILD_TESTS)
add_executable(dumatest_static tests/dumatest.c)
target_link_libraries(dumatest_static DUMA_STATIC)
add_executable(tstheap_static tests/tstheap.c)
target_link_libraries(tstheap_static DUMA_STATIC)
add_executable(thread-test_static tests/thread-test.c)
target_link_libraries(thread-test_static DUMA_STATIC)
add_executable(testmt_static tests/testmt.c)
target_link_libraries(testmt_static DUMA_STATIC)
add_executable(dumatestpp_static tests/dumatestpp.cpp)
target_link_libraries(dumatestpp_static DUMA_STATIC)
add_executable(testoperators_static tests/testoperators.cpp)
target_link_libraries(testoperators_static DUMA_STATIC)
add_executable(testmemlimit_static tests/experimental/testmemlimit.c)
target_link_libraries(testmemlimit_static DUMA_STATIC)
# shared variants
add_executable(dumatest_shared tests/dumatest.c)
target_link_libraries(dumatest_shared DUMA_SHARED)
add_executable(tstheap_shared tests/tstheap.c)
target_link_libraries(tstheap_shared DUMA_SHARED)
add_executable(thread-test_shared tests/thread-test.c)
target_link_libraries(thread-test_shared DUMA_SHARED)
add_executable(testmt_shared tests/testmt.c)
target_link_libraries(testmt_shared DUMA_SHARED)
add_executable(dumatestpp_shared tests/dumatestpp.cpp)
target_link_libraries(dumatestpp_shared DUMA_SHARED)
add_executable(testoperators_shared tests/testoperators.cpp)
target_link_libraries(testoperators_shared DUMA_SHARED)
add_executable(testmemlimit_shared tests/experimental/testmemlimit.c)
target_link_libraries(testmemlimit_shared DUMA_SHARED)
# tests are executed with 'ctest' or 'cmake --build . --target test' - each from build directory
add_test(NAME dumatest_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/dumatest_static")
add_test(NAME tstheap_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/tstheap_static" 3072)
add_test(NAME thread-test_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/thread-test_static")
# add_test(NAME testmt_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testmt_static")
add_test(NAME dumatestpp_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/dumatestpp_static")
add_test(NAME testoperators_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testoperators_static")
add_test(NAME testmemlimit_static COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testmemlimit_static")
add_test(NAME dumatest_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/dumatest_shared")
add_test(NAME tstheap_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/tstheap_shared" 3072)
add_test(NAME thread-test_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/thread-test_shared")
# add_test(NAME testmt_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testmt_shared")
add_test(NAME dumatestpp_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/dumatestpp_shared")
add_test(NAME testoperators_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testoperators_shared")
add_test(NAME testmemlimit_shared COMMAND "${CMAKE_CURRENT_BINARY_DIR}/testmemlimit_shared")
endif()
if (BUILD_EXAMPLES)
# no linked against duma
add_executable(example1_pure example1.cpp)
add_executable(example2_pure example2.cpp)
# add_executable(example3_pure example3.cpp) # uses duma.h
# add_executable(example4_pure example4.cpp) # uses duma.h
# add_executable(example5_pure example5.cpp) # uses dumapp.h
add_executable(example6_pure example6.cpp)
add_executable(example7_pure example7.cpp)
# add_executable(example8_pure example8.cpp) # uses dumapp.h
# linked statically against duma
add_executable(example1_static example1.cpp)
target_link_libraries(example1_static DUMA_STATIC)
add_executable(example2_static example2.cpp)
target_link_libraries(example2_static DUMA_STATIC)
add_executable(example3_static example3.cpp)
target_link_libraries(example3_static DUMA_STATIC)
add_executable(example4_static example4.cpp)
target_link_libraries(example4_static DUMA_STATIC)
add_executable(example5_static example5.cpp)
target_link_libraries(example5_static DUMA_STATIC)
add_executable(example6_static example6.cpp)
target_link_libraries(example6_static DUMA_STATIC)
add_executable(example7_static example7.cpp)
target_link_libraries(example7_static DUMA_STATIC)
add_executable(example8_static example8.cpp)
target_link_libraries(example8_static DUMA_STATIC)
# linked against shared duma-library (.so)
add_executable(example1_shared example1.cpp)
target_link_libraries(example1_shared DUMA_SHARED)
add_executable(example2_shared example2.cpp)
target_link_libraries(example2_shared DUMA_SHARED)
add_executable(example3_shared example3.cpp)
target_link_libraries(example3_shared DUMA_SHARED)
add_executable(example4_shared example4.cpp)
target_link_libraries(example4_shared DUMA_SHARED)
add_executable(example5_shared example5.cpp)
target_link_libraries(example5_shared DUMA_SHARED)
add_executable(example6_shared example6.cpp)
target_link_libraries(example6_shared DUMA_SHARED)
add_executable(example7_shared example7.cpp)
target_link_libraries(example7_shared DUMA_SHARED)
add_executable(example8_shared example8.cpp)
target_link_libraries(example8_shared DUMA_SHARED)
endif()