forked from thrill/thrill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
522 lines (409 loc) · 17.5 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
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
################################################################################
# CMakeLists.txt
#
# Root CMake build script for Thrill.
#
# Part of Project Thrill - http://project-thrill.org
#
# Copyright (C) 2015-2016 Timo Bingmann <[email protected]>
#
# All rights reserved. Published under the BSD-2 license in the LICENSE file.
################################################################################
cmake_minimum_required(VERSION 2.8)
# custom cmake scripts
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/misc/cmake)
# project: we only use C++
project(thrill CXX)
# prohibit in-source builds
if("${PROJECT_SOURCE_DIR}" STREQUAL "${PROJECT_BINARY_DIR}")
message(SEND_ERROR "In-source builds are not allowed.")
endif()
# default to Debug building for single-config generators
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message("Defaulting CMAKE_BUILD_TYPE to Debug")
set(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build type")
endif()
option(THRILL_USE_MPI
"Use (optional) MPI net backend." OFF)
option(THRILL_USE_TBB
"Use (optional) Intel TBB library if available." ON)
option(THRILL_USE_JEMALLOC
"Use (optional) JeMalloc allocation library if available." ON)
option(THRILL_USE_GCOV
"Compile and run tests with gcov for coverage analysis." OFF)
option(THRILL_USE_VALGRIND
"Run tests with valgrind, reports using XML files." OFF)
option(THRILL_USE_IWYU
"Compile with include-what-you-use (iwyu) tool." OFF)
option(THRILL_USE_LTO
"Compile with -flto (link-time optimization)." OFF)
option(THRILL_FULL_BUILD
"Disable large compilation units for faster development." OFF)
option(THRILL_TRY_COMPILE_HEADERS
"Test header files for self-sufficiency: try to compile them." OFF)
# BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to
# make it prominent in the GUI.
option(BUILD_SHARED_LIBS "Build shared libraries (DLLs)." OFF)
if(NOT MSVC)
# enable warnings
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++1y -g -W -Wall -Wextra -fPIC")
# enable more warnings
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wpedantic")
# enable -march=native on Release builds
if(CMAKE_BUILD_TYPE STREQUAL "Release")
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag(-march=native THRILL_HAS_MARCH_NATIVE)
if(THRILL_HAS_MARCH_NATIVE)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native")
endif()
endif()
# warn on conversions
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wconversion -Werror")
# enable AddressSanitizer
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
# enable ThreadSanitizer
if(OFF)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread -pie -fPIC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DTHRILL_HAVE_THREAD_SANITIZER=1")
set(THRILL_USE_MPI OFF)
set(THRILL_USE_TBB OFF)
endif()
# enable UndefinedBehaviorSanitizer
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined")
# enable extra warnings on gcc
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wcast-qual")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Winit-self -Wnoexcept")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Woverloaded-virtual -Wredundant-decls")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wstrict-null-sentinel -Wstrict-overflow=5")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wtautological-compare")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fipa-pure-const -Wsuggest-attribute=const")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wsign-conversion")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wsign-promo")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wold-style-cast")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wsuggest-override")
endif()
# enable extra warnings on clang
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wdeprecated")
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wabstract-vbase-init")
endif()
# Clang < 3.6 0 (?) does not support debug output for auto return types yet.
# try compiling a platform test for auto return types
if(ON)
include(CheckCXXSourceCompiles)
set(OLD_CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")
set(CMAKE_REQUIRED_FLAGS "${CMAKE_CXX_FLAGS} -g")
check_cxx_source_compiles(
"template <typename T> struct A { auto func(int i) { return 42 + i; } };
int main() { A<int> a; return 0; }"
THRILL_CLANG_AUTO_RETURN_DEBUG_INFO)
if (NOT THRILL_CLANG_AUTO_RETURN_DEBUG_INFO)
message(STATUS "compiler does not support -g debug info with auto returns")
string(REPLACE "-g" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
string(REPLACE "-g" "" CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
endif()
set(CMAKE_REQUIRED_FLAGS "${OLD_CMAKE_REQUIRED_FLAGS}")
endif()
elseif(MSVC)
# Force to always compile with W4
if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
else()
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
endif()
# raise warnings as errors
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX")
### disable verbose warnings:
# warning C4589: Constructor of abstract class '...' ignores initializer for
# virtual base class '...' (false positive warnings)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4589")
# warning C4127: conditional expression is constant
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4127")
# warning C4458: declaration of '...' hides class member
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4458")
# warning C4459: declaration of '...' hides global declaration
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4459")
# warning C4702: unreachable code
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4702")
# warning C4250: ABC inherits XYZ via dominance
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4250")
# warning C4503: decorated name length exceeded, name was truncated
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4503")
# disable lots of warnings about "unsecure" C runtime function
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
# disable "The POSIX name for this item is deprecated. Instead, use the ISO C
# and C++ conformant name.", Nope. We will not.
add_definitions(-D_CRT_NONSTDC_NO_DEPRECATE)
# disable lots of warnings about "unsecure" STL functions
add_definitions(-D_SCL_SECURE_NO_WARNINGS)
# windef.h bizzarly defines min and max as macros, unless this is defined.
add_definitions(-DNOMINMAX)
endif()
if(THRILL_USE_IWYU)
# Generate clang compilation database
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
find_package(PythonInterp)
find_program(iwyu_tool_path NAMES iwyu_tool.py)
if (iwyu_tool_path AND PYTHONINTERP_FOUND)
add_custom_target(iwyu
ALL # Remove ALL if you don't iwyu to be run by default.
COMMAND "${PYTHON_EXECUTABLE}" "${iwyu_tool_path}" -p "${CMAKE_BINARY_DIR}"
COMMENT "Running include-what-you-use tool"
VERBATIM)
endif()
endif()
if(THRILL_USE_LTO)
# build with link-time optimization
include(CheckCXXCompilerFlag)
check_cxx_compiler_flag(-flto CXX_HAS_LTO_FLAG)
if(CMAKE_BUILD_TYPE MATCHES Release AND CXX_HAS_LTO_FLAG)
find_program(CMAKE_GCC_AR
NAMES ${_CMAKE_TOOLCHAIN_PREFIX}gcc-ar${_CMAKE_TOOLCHAIN_SUFFIX}
HINTS ${_CMAKE_TOOLCHAIN_LOCATION})
find_program(CMAKE_GCC_NM
NAMES ${_CMAKE_TOOLCHAIN_PREFIX}gcc-nm
HINTS ${_CMAKE_TOOLCHAIN_LOCATION})
find_program(CMAKE_GCC_RANLIB
NAMES ${_CMAKE_TOOLCHAIN_PREFIX}gcc-ranlib
HINTS ${_CMAKE_TOOLCHAIN_LOCATION})
if(CMAKE_GCC_AR AND CMAKE_GCC_NM AND CMAKE_GCC_RANLIB)
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -flto")
set(CMAKE_AR "${CMAKE_GCC_AR}")
set(CMAKE_NM "${CMAKE_GCC_NM}")
set(CMAKE_RANLIB "${CMAKE_GCC_RANLIB}")
else()
message(WARNING "GCC indicates LTO support, but binutils wrappers could not be found. Disabling LTO.")
endif()
endif()
endif()
if(APPLE)
# disable warnings about "ranlib: file: libthrill.a(...cpp.o) has no symbols"
set(CMAKE_C_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
set(CMAKE_CXX_ARCHIVE_FINISH "<CMAKE_RANLIB> -no_warning_for_no_symbols -c <TARGET>")
endif()
message(STATUS "CMAKE_CXX_FLAGS: ${CMAKE_CXX_FLAGS}")
###############################################################################
# set_join(VAR "foo" "bar" "abc") sets VAR="foo bar abc"
macro(set_join var)
set(${var})
foreach(v ${ARGN})
set(${var} "${${var}} ${v}")
endforeach()
string(STRIP ${var} "${${var}}")
endmacro(set_join)
###############################################################################
# enable gcov coverage analysis with gcc
if(THRILL_USE_GCOV)
# find programs
find_program(GENHTML genhtml)
find_program(LCOV lcov)
if(NOT LCOV OR NOT GENHTML)
message(SEND_ERROR "Coverage analysis requires lcov and genhtml programs.")
endif()
# add coverage anaylsis compile and link flags
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fprofile-arcs -ftest-coverage")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fprofile-arcs -ftest-coverage")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lgcov")
# add cached variable containing parameters for lcov/genhtml
set(LCOV_FLAGS "" CACHE STRING "parameters for lcov")
set(GENHTML_FLAGS --legend --no-branch-coverage
CACHE STRING "parameters for genhtml")
# custom target to run before tests
add_custom_target(lcov-reset
COMMAND ${LCOV} -q --directory ${CMAKE_BINARY_DIR} --zerocounters
COMMENT "Resetting code coverage counters")
# custom lcov target to run tests
add_custom_target(lcov-runtests
COMMAND ${CMAKE_CTEST_COMMAND} \${ARGS} || true
DEPENDS lcov-reset
COMMENT "Running all unit tests")
# get git version description
execute_process(COMMAND git describe --tags
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
OUTPUT_VARIABLE GITDESC
OUTPUT_STRIP_TRAILING_WHITESPACE)
# command sequence to gather, clean and generate HTML coverage report
add_custom_target(lcov-html
COMMAND ${LCOV} -q --directory . --capture --output-file lcov.info
COMMAND ${LCOV} -q --remove lcov.info '/usr/*' '*/extlib/*' ${LCOV_FLAGS} --output-file lcov-clean.info
COMMAND ${GENHTML} -q -o coverage --title "Thrill ${GITDESC}" --prefix ${PROJECT_SOURCE_DIR} ${GENHTML_FLAGS} lcov-clean.info
DEPENDS lcov-runtests
COMMENT "Capturing code coverage counters and create HTML coverage report"
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
# top-level target to run tests and generate coverage report
add_custom_target(test-coverage
COMMENT "Generate HTML coverage report "
DEPENDS lcov-html)
endif(THRILL_USE_GCOV)
###############################################################################
# enable gtest framework, valgrind, and collection of results
enable_testing()
include(CTest)
### google test + mock - enable "make test" and add_test()
# this fixes compilation with static libs on MSVC
set(gtest_force_shared_crt ON CACHE BOOL "on" FORCE)
if(NOT MSVC)
# silence some warnings
set(GTEST_SAVE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-missing-field-initializers -Wno-deprecated")
endif()
add_subdirectory(extlib/googletest/googletest)
include_directories(SYSTEM ${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
if(NOT MSVC)
set(CMAKE_CXX_FLAGS "${GTEST_SAVE_CXX_FLAGS}")
endif()
### general valgrind setting, if run with USE_VALGRIND=ON.
set(THRILL_VALGRIND_OPTS
--leak-check=full --track-origins=yes)
# --error-exitcode=1)
# --suppressions=${PROJECT_SOURCE_DIR}/misc/valgrind.supp)
###############################################################################
# check some required system functions
include(CheckFunctionExists)
check_function_exists(pipe2 THRILL_HAVE_PIPE2)
if(THRILL_HAVE_PIPE2)
add_definitions(-DTHRILL_HAVE_PIPE2=1)
endif()
###############################################################################
# add cereal
include_directories(SYSTEM ${CMAKE_CURRENT_SOURCE_DIR}/extlib/cereal/include)
################################################################################
### Find Required Libraries
# find pthreads
find_package(Threads REQUIRED)
set(THRILL_DEP_LIBRARIES ${CMAKE_THREAD_LIBS_INIT} ${THRILL_DEP_LIBRARIES})
# use dl (dynamic linker library)
set(THRILL_DEP_LIBRARIES ${THRILL_DEP_LIBRARIES} ${CMAKE_DL_LIBS})
# try to find jemalloc (optional)
if(THRILL_USE_JEMALLOC)
find_package(JeMalloc)
if(NOT JEMALLOC_FOUND)
message(STATUS "jemalloc library found. No problem, it is optional,")
message(STATUS "but consider installing it for systems with limited memory.")
else()
include_directories(SYSTEM ${JEMALLOC_INCLUDE_DIRS})
set(THRILL_DEP_LIBRARIES ${JEMALLOC_LIBRARIES} ${THRILL_DEP_LIBRARIES})
add_definitions(-DTHRILL_HAVE_JEMALLOC=1)
endif()
endif()
# try to find Intel TBB (optional)
if(THRILL_USE_TBB)
find_package(TBB)
endif()
if(NOT TBB_FOUND)
message(STATUS "Intel TBB not found. No problem, using slower replacements.")
add_definitions(-DTHRILL_HAVE_INTELTBB=0)
elseif(TBB_INTERFACE_VERSION LESS 8000)
message(STATUS "Intel TBB ${TBB_INTERFACE_VERSION} is too old. "
"No problem, using slower replacements.")
add_definitions(-DTHRILL_HAVE_INTELTBB=0)
else(NOT TBB_FOUND)
include_directories(SYSTEM ${TBB_INCLUDE_DIRS})
link_directories(${TBB_LIBRARY_DIRS})
set(THRILL_DEP_LIBRARIES ${TBB_LIBRARIES} ${THRILL_DEP_LIBRARIES})
add_definitions(-DTHRILL_HAVE_INTELTBB=1)
endif()
# use MPI library (optional)
if(THRILL_USE_MPI)
find_package(MPI)
if(NOT MPI_FOUND)
message(STATUS "No MPI library found. No problem, it is optional.")
else()
include_directories(SYSTEM ${MPI_INCLUDE_PATH})
set(THRILL_DEP_LIBRARIES ${MPI_LIBRARIES} ${THRILL_DEP_LIBRARIES})
add_definitions(-DTHRILL_HAVE_NET_MPI=1)
endif()
endif()
# build Infiniband/MPI net backend (optional)
if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/thrill/net/ib/CMakeLists.txt")
include("${CMAKE_CURRENT_SOURCE_DIR}/thrill/net/ib/CMakeLists.txt")
endif()
# detect Boost libraries (optional). Currently no components linked.
# uses: Spirit.Qi in tutorial
find_package(Boost 1.42.0 COMPONENTS)
if(Boost_FOUND)
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
set(THRILL_DEP_LIBRARIES ${Boost_LIBRARIES} ${THRILL_DEP_LIBRARIES})
endif()
################################################################################
### Build Macros
# macro for building main thrill programs with correct libraries
macro(thrill_build TARGETNAME)
add_executable(${TARGETNAME} ${ARGN})
target_link_libraries(${TARGETNAME} thrill)
endmacro(thrill_build)
# macro for building a single-source thrill program
macro(thrill_build_prog PROGNAME)
string(REPLACE "/" "_" TARGETNAME "${PROGNAME}") # replace slashes
thrill_build(${TARGETNAME} ${PROGNAME}.cpp ${ARGN})
endmacro(thrill_build_prog)
# macro for registering test programs: maybe prepend valgrind, add environment
# Usage: thrill_test_single(testname "ENV=1;ENV2=1" program args)
macro(thrill_test_single TESTNAME ENVIRON PROG)
if(THRILL_USE_VALGRIND)
# prepend valgrind call
add_test(
NAME ${TESTNAME}
COMMAND /usr/bin/valgrind ${THRILL_VALGRIND_OPTS}
--xml=yes --xml-file=${TESTNAME}.xml
./${PROG} ${ARGN})
else()
add_test(
NAME ${TESTNAME}
COMMAND ${PROG} ${ARGN})
endif()
# environment of test run: set default and let ENVIRON override
set(TEST_ENVIRON
"THRILL_NET=mock;THRILL_LOCAL=4;THRILL_WORKERS_PER_HOST=1;"
"THRILL_LOG=;THRILL_DIE_WITH_PARENT=;THRILL_UNLINK_BINARY=;"
"${ENVIRON}")
set_tests_properties(${TESTNAME} PROPERTIES ENVIRONMENT "${TEST_ENVIRON}")
endmacro(thrill_test_single)
# macro for registering test programs: prepends environment variables
# Usage: thrill_test_multiple(testname program args)
macro(thrill_test_multiple TESTNAME)
thrill_test_single("${TESTNAME}3" "THRILL_LOCAL=3" ${ARGN})
thrill_test_single("${TESTNAME}4" "THRILL_LOCAL=4" ${ARGN})
endmacro(thrill_test_multiple)
################################################################################
### Descend into Subdirectories
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
# descend into library source
add_subdirectory(thrill)
# descend into testsuite
add_subdirectory(tests)
# descend into benchmarks and examples programs
add_subdirectory(benchmarks)
# descend into examples source
add_subdirectory(examples)
# build frontends
add_subdirectory(frontends)
# build some miscellaneous helpers and programs
add_subdirectory(misc)
###############################################################################
### cmake script THRILL_TRY_COMPILE_HEADERS to compile all Thrill header files
if(THRILL_TRY_COMPILE_HEADERS)
include(CheckCXXSourceCompiles)
set(CMAKE_REQUIRED_FLAGS ${CMAKE_CXX_FLAGS})
set(CMAKE_REQUIRED_INCLUDES ${CMAKE_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/extlib/cereal/include)
set(CMAKE_REQUIRED_LIBRARIES
${CMAKE_BINARY_DIR}/thrill/libthrill.a ${THRILL_DEP_LIBRARIES})
file(GLOB_RECURSE header_files FOLLOW_SYMLINKS "thrill/*.hpp")
list(SORT header_files)
foreach(file ${header_files})
# replace / to _ to fix warnings
string(REPLACE "/" "_" compilename "${file}")
string(REPLACE "." "_" compilename "${compilename}")
check_cxx_source_compiles(
"#include \"${file}\"
int main() { return 0; }" IsSelfContained${compilename})
if(NOT IsSelfContained${compilename})
message(FATAL
"Compilation FAILED for ${file}\n\nCompiler output:\n${OUTPUT}")
endif()
endforeach()
endif(THRILL_TRY_COMPILE_HEADERS)
################################################################################