-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
216 lines (191 loc) · 6.46 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
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Please refer to the README for information about making permanent changes. #
################################################################################
########################################################################
# Project setup
########################################################################
cmake_minimum_required(VERSION 2.8)
project(cfutures)
enable_language(C)
enable_testing()
set(SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
########################################################################
# determine version
########################################################################
foreach(which MAJOR MINOR PATCH)
file(
STRINGS
"${SOURCE_DIR}/include/cfutures_library.h"
CFUTURES_VERSION_STRING REGEX
"#define CFUTURES_VERSION_${which}"
)
string(
REGEX MATCH
"#define CFUTURES_VERSION_${which} ([0-9_]+)"
CFUTURES_REGEX_MATCH
"${CFUTURES_VERSION_STRING}"
)
if (NOT CFUTURES_REGEX_MATCH)
message(
FATAL_ERROR
"failed to parse CFUTURES_VERSION_${which} from cfutures.h"
)
endif()
set(CFUTURES_${which}_VERSION ${CMAKE_MATCH_1})
endforeach(which)
set(
CFUTURES_VERSION
${CFUTURES_MAJOR_VERSION}.${CFUTURES_MINOR_VERSION}.${CFUTURES_PATCH_VERSION}
)
########################################################################
# platform.h
########################################################################
include(CheckIncludeFile)
CHECK_INCLUDE_FILE("linux/wireless.h" HAVE_LINUX_WIRELESS_H)
CHECK_INCLUDE_FILE("net/if_media.h" HAVE_NET_IF_MEDIA_H)
include(CheckFunctionExists)
CHECK_FUNCTION_EXISTS("getifaddrs" HAVE_GETIFADDRS)
CHECK_FUNCTION_EXISTS("freeifaddrs" HAVE_FREEIFADDRS)
include(CheckIncludeFiles)
check_include_files("sys/socket.h;net/if.h" HAVE_NET_IF_H)
if (NOT HAVE_NET_IF_H)
CHECK_INCLUDE_FILE("net/if.h" HAVE_NET_IF_H)
endif()
file(WRITE "${SOURCE_DIR}/src/platform.h.in" "
#cmakedefine HAVE_LINUX_WIRELESS_H
#cmakedefine HAVE_NET_IF_H
#cmakedefine HAVE_NET_IF_MEDIA_H
#cmakedefine HAVE_GETIFADDRS
#cmakedefine HAVE_FREEIFADDRS
")
configure_file("${SOURCE_DIR}/src/platform.h.in" "${SOURCE_DIR}/src/platform.h")
#The MSVC C compiler is too out of date,
#so the sources have to be compiled as c++
if (MSVC)
enable_language(CXX)
file(GLOB sources "${SOURCE_DIR}/src/*.c")
set_source_files_properties(
${sources}
PROPERTIES LANGUAGE CXX
)
set(MORE_LIBRARIES ws2_32 Rpcrt4 Iphlpapi)
endif()
# required libraries for mingw
if (MINGW)
set(MORE_LIBRARIES -lws2_32 -lrpcrt4 -liphlpapi)
endif()
# required libraries for cygwin
if (CYGWIN)
set(MORE_LIBRARIES -luuid)
endif()
list(APPEND CMAKE_MODULE_PATH "${SOURCE_DIR}")
set(OPTIONAL_LIBRARIES)
########################################################################
# includes
########################################################################
set (cfutures_headers
include/cfutures_library.h
include/cfutures.h
include/prelude.h
include/future.h
include/future_pool.h
include/promise.h
src/executor.h
src/queue.h
)
source_group ("Header Files" FILES ${cfutures_headers})
install(FILES ${cfutures_headers} DESTINATION include)
########################################################################
# library
########################################################################
include_directories("${SOURCE_DIR}/src" "${SOURCE_DIR}/include")
set (cfutures_sources
src/future.c
src/future_pool.c
src/promise.c
src/executor.c
src/queue.c
)
source_group("Source Files" FILES ${cfutures_sources})
if (NOT DEFINED BUILD_SHARED_LIBS)
SET(BUILD_SHARED_LIBS ON)
endif()
add_library(cfutures ${cfutures_sources})
set_target_properties(cfutures
PROPERTIES DEFINE_SYMBOL "LIBCFUTURES_EXPORTS"
)
set_target_properties(cfutures
PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${SOURCE_DIR}/src"
)
target_link_libraries(cfutures
${ZEROMQ_LIBRARIES} ${MORE_LIBRARIES}
)
install(TARGETS cfutures
LIBRARY DESTINATION "lib${LIB_SUFFIX}" # .so file
ARCHIVE DESTINATION "lib${LIB_SUFFIX}" # .lib file
RUNTIME DESTINATION bin # .dll file
)
########################################################################
# pkgconfig
########################################################################
set(VERSION "${CFUTURES_VERSION}")
set(prefix "${CMAKE_INSTALL_PREFIX}")
set(exec_prefix "\${prefix}")
set(libdir "\${prefix}/lib${LIB_SUFFIX}")
set(includedir "\${prefix}/include")
configure_file(
"${SOURCE_DIR}/src/libcfutures.pc.in"
"${SOURCE_DIR}/src/libcfutures.pc"
@ONLY)
install(
FILES "${SOURCE_DIR}/src/libcfutures.pc"
DESTINATION "lib${LIB_SUFFIX}/pkgconfig"
)
########################################################################
# executables
########################################################################
add_executable(
cfutures_selftest
"${SOURCE_DIR}/src/cfutures_selftest.c"
)
target_link_libraries(
cfutures_selftest
cfutures
${OPTIONAL_LIBRARIES}
)
set_target_properties(
cfutures_selftest
PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${SOURCE_DIR}/src"
)
########################################################################
# tests
########################################################################
set(CLASSTEST_TIMEOUT 5 CACHE STRING "Timeout of the selftest of a class")
set(TOTAL_TIMEOUT 20 CACHE STRING "Timout of the total testsuite")
set(TEST_CLASSES
future
future_pool
promise
executor
queue
)
foreach(TEST_CLASS ${TEST_CLASSES})
add_test(
NAME ${TEST_CLASS}
COMMAND cfutures_selftest --continue --verbose --test ${TEST_CLASS}
)
set_tests_properties(
${TEST_CLASS}
PROPERTIES TIMEOUT ${CLASSTEST_TIMEOUT}
)
endforeach(TEST_CLASS)
########################################################################
# summary
########################################################################
message(STATUS "version: ${CFUTURES_VERSION}")
message(STATUS "install: ${CMAKE_INSTALL_PREFIX}")
################################################################################
# THIS FILE IS 100% GENERATED BY ZPROJECT; DO NOT EDIT EXCEPT EXPERIMENTALLY #
# Please refer to the README for information about making permanent changes. #
################################################################################