cmake: set compiler flags for non-Windows platforms
[folly.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 3.4.0 FATAL_ERROR)
2
3 # includes
4 set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" ${CMAKE_MODULE_PATH})
5 include_directories(${CMAKE_CURRENT_SOURCE_DIR})
6
7 # package information
8 set(PACKAGE_NAME      "folly")
9 set(PACKAGE_VERSION   "0.58.0-dev")
10 set(PACKAGE_STRING    "${PACKAGE_NAME} ${PACKAGE_VERSION}")
11 set(PACKAGE_TARNAME   "${PACKAGE_NAME}-${PACKAGE_VERSION}")
12 set(PACKAGE_BUGREPORT "https://github.com/facebook/folly/issues")
13
14 # 150+ tests in the root folder anyone? No? I didn't think so.
15 set_property(GLOBAL PROPERTY USE_FOLDERS ON)
16
17 project(${PACKAGE_NAME} CXX)
18
19 # Check target architecture
20 if (NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
21   message(FATAL_ERROR "Folly requires a 64bit target architecture.")
22 endif()
23
24 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
25   if (MSVC_VERSION GREATER_EQUAL 1910 AND MSVC_VERSION LESS 1920)
26     set(MSVC_IS_2017 ON)
27   elseif (MSVC_VERSION EQUAL 1900)
28     set(MSVC_IS_2017 OFF)
29   else()
30     message(
31       FATAL_ERROR
32       "This build script only supports building Folly on 64-bit Windows with "
33       "Visual Studio 2015 or Visual Studio 2017. "
34       "MSVC version '${MSVC_VERSION}' is not supported."
35     )
36   endif()
37 else()
38   message(
39     FATAL_ERROR
40     "The CMake build should only be used on Windows. "
41     "For every other platform, use autoconf."
42   )
43 endif()
44
45 set(FOLLY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/folly")
46
47 # Generate a few tables and create the main config file.
48 find_package(PythonInterp REQUIRED)
49 add_custom_command(
50   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
51   COMMAND
52     ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/folly/build
53   COMMAND
54     ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_escape_tables.py"
55     --install_dir ${CMAKE_CURRENT_BINARY_DIR}/folly/build
56   DEPENDS ${FOLLY_DIR}/build/generate_escape_tables.py
57   COMMENT "Generating the escape tables..." VERBATIM
58 )
59 add_custom_command(
60   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
61   COMMAND
62     ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/folly/build
63   COMMAND
64     ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_format_tables.py"
65     --install_dir ${CMAKE_CURRENT_BINARY_DIR}/folly/build
66   DEPENDS ${FOLLY_DIR}/build/generate_format_tables.py
67   COMMENT "Generating the format tables..." VERBATIM
68 )
69 add_custom_command(
70   OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp"
71   COMMAND
72     ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/folly/build
73   COMMAND
74     ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_varint_tables.py"
75     --install_dir ${CMAKE_CURRENT_BINARY_DIR}/folly/build
76   DEPENDS ${FOLLY_DIR}/build/generate_varint_tables.py
77   COMMENT "Generating the group varint tables..." VERBATIM
78 )
79
80 include(folly-deps) # Find the required packages
81 if (LIBPTHREAD_FOUND)
82   set(FOLLY_HAVE_PTHREAD ON)
83 endif()
84 configure_file(
85   ${CMAKE_CURRENT_SOURCE_DIR}/CMake/folly-config.h.cmake
86   ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
87 )
88
89 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
90   include(FollyCompilerMSVC)
91 else()
92   include(FollyCompilerUnix)
93 endif()
94 include(FollyFunctions)
95
96 # Main folly library files
97 auto_sources(files "*.cpp" "RECURSE" "${FOLLY_DIR}")
98 auto_sources(hfiles "*.h" "RECURSE" "${FOLLY_DIR}")
99
100 # No need for tests or benchmarks, and we can't build most experimental stuff.
101 REMOVE_MATCHES_FROM_LISTS(files hfiles
102   MATCHES
103     "/build/"
104     "/experimental/exception_tracer/"
105     "/experimental/hazptr/bench/"
106     "/experimental/hazptr/example/"
107     "/experimental/logging/example/"
108     "/experimental/symbolizer/"
109     "/futures/exercises/"
110     "/test/"
111     "/tools/"
112     "Benchmark.cpp$"
113     "Test.cpp$"
114   IGNORE_MATCHES
115     "/Benchmark.cpp$"
116 )
117 list(REMOVE_ITEM files
118   ${FOLLY_DIR}/Poly.cpp
119   ${FOLLY_DIR}/Subprocess.cpp
120   ${FOLLY_DIR}/SingletonStackTrace.cpp
121   ${FOLLY_DIR}/experimental/JSONSchemaTester.cpp
122   ${FOLLY_DIR}/experimental/RCUUtils.cpp
123   ${FOLLY_DIR}/experimental/io/AsyncIO.cpp
124   ${FOLLY_DIR}/experimental/io/HugePageUtil.cpp
125   ${FOLLY_DIR}/futures/test/Benchmark.cpp
126 )
127 list(REMOVE_ITEM hfiles
128   ${FOLLY_DIR}/Fingerprint.h
129   ${FOLLY_DIR}/Poly.h
130   ${FOLLY_DIR}/Poly-inl.h
131   ${FOLLY_DIR}/detail/PolyDetail.h
132   ${FOLLY_DIR}/detail/TypeList.h
133   ${FOLLY_DIR}/detail/SlowFingerprint.h
134   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
135   ${FOLLY_DIR}/experimental/RCURefCount.h
136   ${FOLLY_DIR}/experimental/RCUUtils.h
137   ${FOLLY_DIR}/experimental/io/AsyncIO.h
138   ${FOLLY_DIR}/poly/Nullable.h
139   ${FOLLY_DIR}/poly/Regular.h
140 )
141
142 add_library(folly_base OBJECT
143   ${files} ${hfiles}
144   ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
145   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
146   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
147   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp
148 )
149 auto_source_group(folly ${FOLLY_DIR} ${files} ${hfiles})
150 apply_folly_compile_options_to_target(folly_base)
151 target_include_directories(folly_base PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
152 # Add the generated files to the correct source group.
153 source_group("folly" FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h)
154 source_group("folly\\build" FILES
155   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
156   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
157   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
158   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp
159 )
160
161 set(FOLLY_SHINY_DEPENDENCIES
162   Boost::chrono
163   Boost::context
164   Boost::date_time
165   Boost::filesystem
166   Boost::program_options
167   Boost::regex
168   Boost::system
169   OpenSSL::SSL
170   OpenSSL::Crypto
171 )
172
173 set(FOLLY_LINK_LIBRARIES
174   ${DOUBLE_CONVERSION_LIBRARY}
175 )
176
177 set(FOLLY_INCLUDE_DIRECTORIES
178   ${DOUBLE_CONVERSION_INCLUDE_DIR}
179 )
180
181 if(TARGET gflags)
182   set(FOLLY_SHINY_DEPENDENCIES ${FOLLY_SHINY_DEPENDENCIES} gflags)
183 else()
184   set(FOLLY_LINK_LIBRARIES ${FOLLY_LINK_LIBRARIES} ${LIBGFLAGS_LIBRARY})
185   set(FOLLY_INCLUDE_DIRECTORIES ${FOLLY_INCLUDE_DIRECTORIES} ${LIBGFLAGS_INCLUDE_DIR})
186 endif()
187
188 if(TARGET glog::glog)
189   set(FOLLY_SHINY_DEPENDENCIES ${FOLLY_SHINY_DEPENDENCIES} glog::glog)
190 else()
191   set(FOLLY_LINK_LIBRARIES ${FOLLY_LINK_LIBRARIES} ${LIBGLOG_LIBRARY})
192   set(FOLLY_INCLUDE_DIRECTORIES ${FOLLY_INCLUDE_DIRECTORIES} ${LIBGLOG_INCLUDE_DIR})
193 endif()
194
195 if(TARGET event)
196   set(FOLLY_SHINY_DEPENDENCIES ${FOLLY_SHINY_DEPENDENCIES} event)
197 else()
198   set(FOLLY_LINK_LIBRARIES ${FOLLY_LINK_LIBRARIES} ${LIBEVENT_LIB})
199   set(FOLLY_INCLUDE_DIRECTORIES ${FOLLY_INCLUDE_DIRECTORIES} ${LIBEVENT_INCLUDE_DIR})
200 endif()
201
202
203 if("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
204   set(FOLLY_LINK_LIBRARIES
205     ${FOLLY_LINK_LIBRARIES}
206     Iphlpapi.lib
207     Ws2_32.lib
208   )
209 else()
210   set(FOLLY_LINK_LIBRARIES
211     ${FOLLY_LINK_LIBRARIES}
212     dl
213   )
214 endif()
215
216 set(FOLLY_LINK_LIBRARIES
217   ${FOLLY_LINK_LIBRARIES}
218   ${FOLLY_SHINY_DEPENDENCIES}
219 )
220
221 target_include_directories(folly_base
222   PUBLIC
223     ${FOLLY_INCLUDE_DIRECTORIES}
224     $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
225 )
226
227 foreach (LIB ${FOLLY_SHINY_DEPENDENCIES})
228   target_include_directories(folly_base PUBLIC $<TARGET_PROPERTY:${LIB},INCLUDE_DIRECTORIES>)
229   target_compile_definitions(folly_base PUBLIC $<TARGET_PROPERTY:${LIB},INTERFACE_COMPILE_DEFINITIONS>)
230 endforeach()
231
232 if (FOLLY_HAVE_PTHREAD)
233   target_include_directories(folly_base PUBLIC ${LIBPTHREAD_INCLUDE_DIRS})
234   list(APPEND FOLLY_LINK_LIBRARIES ${LIBPTHREAD_LIBRARIES})
235 endif()
236
237 # Now to generate the fingerprint tables
238 add_executable(GenerateFingerprintTables
239   ${FOLLY_DIR}/build/GenerateFingerprintTables.cpp
240   $<TARGET_OBJECTS:folly_base>
241 )
242 target_link_libraries(GenerateFingerprintTables PRIVATE ${FOLLY_LINK_LIBRARIES})
243 target_include_directories(GenerateFingerprintTables PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
244 add_dependencies(GenerateFingerprintTables folly_base)
245 apply_folly_compile_options_to_target(GenerateFingerprintTables)
246 set_property(TARGET GenerateFingerprintTables PROPERTY FOLDER "Build")
247 source_group("" FILES ${FOLLY_DIR}/build/GenerateFingerprintTables.cpp)
248
249 # Compile the fingerprint tables.
250 add_custom_command(
251   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
252   COMMAND
253     ${CMAKE_COMMAND} -E make_directory ${CMAKE_CURRENT_BINARY_DIR}/folly/build
254   COMMAND
255     GenerateFingerprintTables
256     --install_dir ${CMAKE_CURRENT_BINARY_DIR}/folly/build
257   DEPENDS GenerateFingerprintTables
258   COMMENT "Generating the fingerprint tables..."
259 )
260 add_library(folly_fingerprint STATIC
261   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
262   ${FOLLY_DIR}/Fingerprint.h
263   ${FOLLY_DIR}/detail/SlowFingerprint.h
264   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
265   $<TARGET_OBJECTS:folly_base>
266 )
267 target_link_libraries(folly_fingerprint PRIVATE ${FOLLY_LINK_LIBRARIES})
268 target_include_directories(folly_fingerprint PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
269 add_dependencies(folly_fingerprint folly_base)
270 apply_folly_compile_options_to_target(folly_fingerprint)
271
272 # We want to generate a single library and target for folly, but we needed a
273 # two-stage compile for the fingerprint tables, so we create a phony source
274 # file that we modify whenever the base libraries change, causing folly to be
275 # re-linked, making things happy.
276 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp
277   COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp
278   DEPENDS folly_base folly_fingerprint
279 )
280 add_library(folly ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp $<TARGET_OBJECTS:folly_base>)
281 apply_folly_compile_options_to_target(folly)
282 source_group("" FILES ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp)
283
284 target_link_libraries(folly PUBLIC ${FOLLY_LINK_LIBRARIES})
285 target_include_directories(folly PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
286
287 install(TARGETS folly
288   EXPORT folly
289   RUNTIME DESTINATION bin
290   LIBRARY DESTINATION lib
291   ARCHIVE DESTINATION lib)
292 auto_install_files(folly ${FOLLY_DIR}
293   ${hfiles}
294   ${FOLLY_DIR}/Fingerprint.h
295   ${FOLLY_DIR}/detail/SlowFingerprint.h
296   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
297 )
298 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h DESTINATION include/folly)
299 install(
300   EXPORT folly
301   DESTINATION share/folly
302   NAMESPACE Folly::
303   FILE folly-targets.cmake
304 )
305
306 # We need a wrapper config file to do the find_package calls to ensure
307 # that all our dependencies are available to link against.
308 file(
309   COPY ${CMAKE_CURRENT_SOURCE_DIR}/CMake/folly-deps.cmake
310   DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/
311 )
312 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/folly-deps.cmake "\ninclude(folly-targets.cmake)\n")
313 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/folly-deps.cmake DESTINATION share/folly RENAME folly-config.cmake)
314
315 option(BUILD_TESTS "If enabled, compile the tests." OFF)
316 option(BUILD_BROKEN_TESTS "If enabled, compile tests that are known to be broken." OFF)
317 option(BUILD_HANGING_TESTS "If enabled, compile tests that are known to hang." OFF)
318 option(BUILD_SLOW_TESTS "If enabled, compile tests that take a while to run in debug mode." OFF)
319 if (BUILD_TESTS)
320   find_package(GMock MODULE REQUIRED)
321
322   add_library(folly_test_support
323     ${FOLLY_DIR}/test/DeterministicSchedule.cpp
324     ${FOLLY_DIR}/test/DeterministicSchedule.h
325     ${FOLLY_DIR}/test/SingletonTestStructs.cpp
326     ${FOLLY_DIR}/test/SocketAddressTestHelper.cpp
327     ${FOLLY_DIR}/test/SocketAddressTestHelper.h
328     ${FOLLY_DIR}/experimental/logging/test/TestLogHandler.cpp
329     ${FOLLY_DIR}/experimental/logging/test/TestLogHandler.h
330     ${FOLLY_DIR}/futures/test/TestExecutor.cpp
331     ${FOLLY_DIR}/futures/test/TestExecutor.h
332     ${FOLLY_DIR}/io/async/test/BlockingSocket.h
333     ${FOLLY_DIR}/io/async/test/MockAsyncServerSocket.h
334     ${FOLLY_DIR}/io/async/test/MockAsyncSocket.h
335     ${FOLLY_DIR}/io/async/test/MockAsyncSSLSocket.h
336     ${FOLLY_DIR}/io/async/test/MockAsyncTransport.h
337     ${FOLLY_DIR}/io/async/test/MockAsyncUDPSocket.h
338     ${FOLLY_DIR}/io/async/test/MockTimeoutManager.h
339     ${FOLLY_DIR}/io/async/test/ScopedBoundPort.cpp
340     ${FOLLY_DIR}/io/async/test/ScopedBoundPort.h
341     ${FOLLY_DIR}/io/async/test/SocketPair.cpp
342     ${FOLLY_DIR}/io/async/test/SocketPair.h
343     ${FOLLY_DIR}/io/async/test/TestSSLServer.cpp
344     ${FOLLY_DIR}/io/async/test/TestSSLServer.h
345     ${FOLLY_DIR}/io/async/test/TimeUtil.cpp
346     ${FOLLY_DIR}/io/async/test/TimeUtil.h
347     ${FOLLY_DIR}/io/async/test/UndelayedDestruction.h
348     ${FOLLY_DIR}/io/async/test/Util.h
349   )
350   target_compile_definitions(folly_test_support
351     PUBLIC
352       ${LIBGMOCK_DEFINES}
353   )
354   target_include_directories(folly_test_support
355     PUBLIC
356       ${LIBGMOCK_INCLUDE_DIR}
357   )
358   target_link_libraries(folly_test_support
359     PUBLIC
360       Boost::thread
361       folly
362       ${LIBGMOCK_LIBRARY}
363   )
364   apply_folly_compile_options_to_target(folly_test_support)
365
366   folly_define_tests(
367     DIRECTORY chrono/test/
368       TEST chrono_conv_test SOURCES ConvTest.cpp
369
370     DIRECTORY compression/test/
371       TEST compression_test SOURCES CompressionTest.cpp
372
373     DIRECTORY container/test/
374       TEST access_test SOURCES AccessTest.cpp
375       TEST array_test SOURCES ArrayTest.cpp
376       TEST bit_iterator_test SOURCES BitIteratorTest.cpp
377       TEST enumerate_test SOURCES EnumerateTest.cpp
378       TEST evicting_cache_map_test SOURCES EvictingCacheMapTest.cpp
379       TEST foreach_test SOURCES ForeachTest.cpp
380       TEST merge_test SOURCES MergeTest.cpp
381       TEST sparse_byte_set_test SOURCES SparseByteSetTest.cpp
382
383     DIRECTORY concurrency/test/
384       TEST cache_locality_test SOURCES CacheLocalityTest.cpp
385
386     DIRECTORY executors/test/
387       TEST async_helpers_test SOURCES AsyncTest.cpp
388       TEST codel_test SOURCES CodelTest.cpp
389       TEST executor_test SOURCES ExecutorTest.cpp
390       TEST fiber_io_executor_test SOURCES FiberIOExecutorTest.cpp
391       TEST global_executor_test SOURCES GlobalExecutorTest.cpp
392       TEST serial_executor_test SOURCES SerialExecutorTest.cpp
393       TEST thread_pool_executor_test SOURCES ThreadPoolExecutorTest.cpp
394       TEST threaded_executor_test SOURCES ThreadedExecutorTest.cpp
395
396     DIRECTORY executors/task_queue/test/
397       TEST unbounded_blocking_queue_test SOURCES UnboundedBlockingQueueTest.cpp
398
399     DIRECTORY experimental/test/
400       TEST autotimer_test SOURCES AutoTimerTest.cpp
401       TEST bits_test_2 SOURCES BitsTest.cpp
402       TEST bitvector_test SOURCES BitVectorCodingTest.cpp
403       TEST dynamic_parser_test SOURCES DynamicParserTest.cpp
404       TEST eliasfano_test SOURCES EliasFanoCodingTest.cpp
405       TEST event_count_test SOURCES EventCountTest.cpp
406       TEST function_scheduler_test_2 SOURCES FunctionSchedulerTest.cpp
407       TEST future_dag_test SOURCES FutureDAGTest.cpp
408       TEST json_schema_test SOURCES JSONSchemaTest.cpp
409       TEST lock_free_ring_buffer_test SOURCES LockFreeRingBufferTest.cpp
410       #TEST nested_command_line_app_test SOURCES NestedCommandLineAppTest.cpp
411       #TEST program_options_test SOURCES ProgramOptionsTest.cpp
412       # Depends on liburcu
413       #TEST read_mostly_shared_ptr_test SOURCES ReadMostlySharedPtrTest.cpp
414       #TEST ref_count_test SOURCES RefCountTest.cpp
415       TEST stringkeyed_test SOURCES StringKeyedTest.cpp
416       TEST test_util_test SOURCES TestUtilTest.cpp
417       TEST tuple_ops_test SOURCES TupleOpsTest.cpp
418
419     DIRECTORY experimental/io/test/
420       # Depends on libaio
421       #TEST async_io_test SOURCES AsyncIOTest.cpp
422       TEST fs_util_test SOURCES FsUtilTest.cpp
423
424     DIRECTORY experimental/logging/test/
425       TEST async_file_writer_test SOURCES AsyncFileWriterTest.cpp
426       TEST config_parser_test SOURCES ConfigParserTest.cpp
427       TEST config_update_test SOURCES ConfigUpdateTest.cpp
428       TEST file_handler_factory_test SOURCES FileHandlerFactoryTest.cpp
429       TEST glog_formatter_test SOURCES GlogFormatterTest.cpp
430       TEST immediate_file_writer_test SOURCES ImmediateFileWriterTest.cpp
431       TEST log_category_test SOURCES LogCategoryTest.cpp
432       TEST logger_db_test SOURCES LoggerDBTest.cpp
433       TEST logger_test SOURCES LoggerTest.cpp
434       TEST log_level_test SOURCES LogLevelTest.cpp
435       TEST log_message_test SOURCES LogMessageTest.cpp
436       TEST log_name_test SOURCES LogNameTest.cpp
437       TEST log_stream_test SOURCES LogStreamTest.cpp
438       TEST printf_test SOURCES PrintfTest.cpp
439       TEST rate_limiter_test SOURCES RateLimiterTest.cpp
440       TEST standard_log_handler_test SOURCES StandardLogHandlerTest.cpp
441       TEST xlog_test
442         HEADERS
443           XlogHeader1.h
444           XlogHeader2.h
445         SOURCES
446           XlogFile1.cpp
447           XlogFile2.cpp
448           XlogTest.cpp
449
450     DIRECTORY fibers/test/
451       TEST fibers_test SOURCES FibersTest.cpp
452
453     DIRECTORY functional/test/
454       TEST apply_tuple_test SOURCES ApplyTupleTest.cpp
455       TEST partial_test SOURCES PartialTest.cpp
456
457     DIRECTORY futures/test/
458       TEST barrier_test SOURCES BarrierTest.cpp
459       TEST callback_lifetime_test SOURCES CallbackLifetimeTest.cpp
460       TEST collect_test SOURCES CollectTest.cpp
461       TEST context_test SOURCES ContextTest.cpp
462       TEST core_test SOURCES CoreTest.cpp
463       TEST ensure_test SOURCES EnsureTest.cpp
464       TEST fsm_test SOURCES FSMTest.cpp
465       TEST filter_test SOURCES FilterTest.cpp
466       TEST future_splitter_test SOURCES FutureSplitterTest.cpp
467       # MSVC SFINAE bug
468       #TEST future_test SOURCES FutureTest.cpp
469       TEST header_compile_test SOURCES HeaderCompileTest.cpp
470       TEST interrupt_test SOURCES InterruptTest.cpp
471       TEST map_test SOURCES MapTest.cpp
472       TEST non_copyable_lambda_test SOURCES NonCopyableLambdaTest.cpp
473       TEST poll_test SOURCES PollTest.cpp
474       TEST promise_test SOURCES PromiseTest.cpp
475       TEST reduce_test SOURCES ReduceTest.cpp
476       # MSVC SFINAE bug
477       #TEST retrying_test SOURCES RetryingTest.cpp
478       TEST self_destruct_test SOURCES SelfDestructTest.cpp
479       TEST shared_promise_test SOURCES SharedPromiseTest.cpp
480       TEST test_executor_test SOURCES TestExecutorTest.cpp
481       TEST then_compile_test
482         HEADERS
483           ThenCompileTest.h
484         SOURCES
485           ThenCompileTest.cpp
486       TEST then_test SOURCES ThenTest.cpp
487       TEST timekeeper_test SOURCES TimekeeperTest.cpp
488       TEST times_test SOURCES TimesTest.cpp
489       TEST unwrap_test SOURCES UnwrapTest.cpp
490       TEST via_test SOURCES ViaTest.cpp
491       TEST wait_test SOURCES WaitTest.cpp
492       TEST when_test SOURCES WhenTest.cpp
493       TEST while_do_test SOURCES WhileDoTest.cpp
494       TEST will_equal_test SOURCES WillEqualTest.cpp
495       TEST window_test SOURCES WindowTest.cpp
496
497     DIRECTORY gen/test/
498       # MSVC bug can't resolve initializer_list constructor properly
499       #TEST base_test SOURCES BaseTest.cpp
500       TEST combine_test SOURCES CombineTest.cpp
501       TEST parallel_map_test SOURCES ParallelMapTest.cpp
502       TEST parallel_test SOURCES ParallelTest.cpp
503
504     DIRECTORY hash/test/
505       TEST checksum_test SOURCES ChecksumTest.cpp
506       TEST hash_test SOURCES HashTest.cpp
507       TEST spooky_hash_v1_test SOURCES SpookyHashV1Test.cpp
508       TEST spooky_hash_v2_test SOURCES SpookyHashV2Test.cpp
509
510     DIRECTORY io/test/
511       TEST iobuf_test SOURCES IOBufTest.cpp
512       TEST iobuf_cursor_test SOURCES IOBufCursorTest.cpp
513       TEST iobuf_queue_test SOURCES IOBufQueueTest.cpp
514       TEST record_io_test SOURCES RecordIOTest.cpp
515       TEST ShutdownSocketSetTest HANGING
516         SOURCES ShutdownSocketSetTest.cpp
517
518     DIRECTORY io/async/test/
519       TEST async_test
520         CONTENT_DIR certs/
521         HEADERS
522           AsyncSocketTest.h
523           AsyncSSLSocketTest.h
524         SOURCES
525           AsyncPipeTest.cpp
526           AsyncSocketExceptionTest.cpp
527           AsyncSocketTest.cpp
528           AsyncSocketTest2.cpp
529           AsyncSSLSocketTest.cpp
530           AsyncSSLSocketTest2.cpp
531           AsyncSSLSocketWriteTest.cpp
532           AsyncTransportTest.cpp
533           # This is disabled because it depends on things that don't exist
534           # on Windows.
535           #EventHandlerTest.cpp
536           # The async signal handler is not supported on Windows.
537           #AsyncSignalHandlerTest.cpp
538       TEST async_timeout_test SOURCES AsyncTimeoutTest.cpp
539       TEST AsyncUDPSocketTest SOURCES AsyncUDPSocketTest.cpp
540       TEST DelayedDestructionTest SOURCES DelayedDestructionTest.cpp
541       TEST DelayedDestructionBaseTest SOURCES DelayedDestructionBaseTest.cpp
542       TEST DestructorCheckTest SOURCES DestructorCheckTest.cpp
543       TEST EventBaseTest SOURCES EventBaseTest.cpp
544       TEST EventBaseLocalTest SOURCES EventBaseLocalTest.cpp
545       TEST HHWheelTimerTest SOURCES HHWheelTimerTest.cpp
546       TEST HHWheelTimerSlowTests SLOW
547         SOURCES HHWheelTimerSlowTests.cpp
548       TEST NotificationQueueTest SOURCES NotificationQueueTest.cpp
549       TEST RequestContextTest SOURCES RequestContextTest.cpp
550       TEST ScopedEventBaseThreadTest SOURCES ScopedEventBaseThreadTest.cpp
551       TEST ssl_session_test SOURCES SSLSessionTest.cpp
552       TEST writechain_test SOURCES WriteChainAsyncTransportWrapperTest.cpp
553
554     DIRECTORY io/async/ssl/test/
555       TEST ssl_errors_test SOURCES SSLErrorsTest.cpp
556
557     DIRECTORY lang/test/
558       TEST bits_test SOURCES BitsTest.cpp
559       TEST cold_class_test SOURCES ColdClassTest.cpp
560
561     DIRECTORY memory/test/
562       TEST arena_test SOURCES ArenaTest.cpp
563       TEST thread_cached_arena_test SOURCES ThreadCachedArenaTest.cpp
564       TEST mallctl_helper_test SOURCES MallctlHelperTest.cpp
565
566     DIRECTORY portability/test/
567       TEST constexpr_test SOURCES ConstexprTest.cpp
568       TEST libgen-test SOURCES LibgenTest.cpp
569       TEST openssl_portability_test SOURCES OpenSSLPortabilityTest.cpp
570       TEST time-test SOURCES TimeTest.cpp
571
572     DIRECTORY ssl/test/
573       TEST openssl_hash_test SOURCES OpenSSLHashTest.cpp
574
575     DIRECTORY stats/test/
576       TEST histogram_test SOURCES HistogramTest.cpp
577       TEST timeseries_histogram_test SOURCES TimeseriesHistogramTest.cpp
578       TEST timeseries_test SOURCES TimeseriesTest.cpp
579
580     DIRECTORY synchronization/test/
581       TEST baton_test SOURCES BatonTest.cpp
582       TEST call_once_test SOURCES CallOnceTest.cpp
583       TEST lifo_sem_test SOURCES LifoSemTests.cpp
584       TEST rw_spin_lock_test SOURCES RWSpinLockTest.cpp
585
586     DIRECTORY system/test/
587       TEST memory_mapping_test SOURCES MemoryMappingTest.cpp
588       TEST shell_test SOURCES ShellTest.cpp
589       #TEST subprocess_test SOURCES SubprocessTest.cpp
590       TEST thread_id_test SOURCES ThreadIdTest.cpp
591       TEST thread_name_test SOURCES ThreadNameTest.cpp
592
593     DIRECTORY test/
594       TEST ahm_int_stress_test SOURCES AHMIntStressTest.cpp
595       TEST arena_smartptr_test SOURCES ArenaSmartPtrTest.cpp
596       TEST ascii_check_test SOURCES AsciiCaseInsensitiveTest.cpp
597       TEST atomic_bit_set_test SOURCES AtomicBitSetTest.cpp
598       TEST atomic_hash_array_test SOURCES AtomicHashArrayTest.cpp
599       TEST atomic_hash_map_test HANGING
600         SOURCES AtomicHashMapTest.cpp
601       TEST atomic_linked_list_test SOURCES AtomicLinkedListTest.cpp
602       TEST atomic_struct_test SOURCES AtomicStructTest.cpp
603       TEST atomic_unordered_map_test SOURCES AtomicUnorderedMapTest.cpp
604       TEST cacheline_padded_test SOURCES CachelinePaddedTest.cpp
605       TEST clock_gettime_wrappers_test SOURCES ClockGettimeWrappersTest.cpp
606       TEST concurrent_skip_list_test SOURCES ConcurrentSkipListTest.cpp
607       TEST container_traits_test SOURCES ContainerTraitsTest.cpp
608       TEST conv_test SOURCES ConvTest.cpp
609       TEST cpu_id_test SOURCES CpuIdTest.cpp
610       TEST demangle_test SOURCES DemangleTest.cpp
611       TEST deterministic_schedule_test SOURCES DeterministicScheduleTest.cpp
612       TEST discriminated_ptr_test SOURCES DiscriminatedPtrTest.cpp
613       TEST dynamic_test SOURCES DynamicTest.cpp
614       TEST dynamic_converter_test SOURCES DynamicConverterTest.cpp
615       TEST dynamic_other_test SOURCES DynamicOtherTest.cpp
616       TEST endian_test SOURCES EndianTest.cpp
617       TEST exception_test SOURCES ExceptionTest.cpp
618       TEST exception_wrapper_test SOURCES ExceptionWrapperTest.cpp
619       TEST expected_test SOURCES ExpectedTest.cpp
620       TEST fbvector_test SOURCES FBVectorTest.cpp
621       TEST file_test SOURCES FileTest.cpp
622       #TEST file_lock_test SOURCES FileLockTest.cpp
623       TEST file_util_test HANGING
624         SOURCES FileUtilTest.cpp
625       TEST fingerprint_test SOURCES FingerprintTest.cpp
626       TEST format_other_test SOURCES FormatOtherTest.cpp
627       TEST format_test SOURCES FormatTest.cpp
628       TEST function_scheduler_test SOURCES FunctionSchedulerTest.cpp
629       TEST function_test BROKEN
630         SOURCES FunctionTest.cpp
631       TEST function_ref_test SOURCES FunctionRefTest.cpp
632       TEST futex_test SOURCES FutexTest.cpp
633       TEST group_varint_test SOURCES GroupVarintTest.cpp
634       TEST group_varint_test_ssse3 SOURCES GroupVarintTest.cpp
635       TEST has_member_fn_traits_test SOURCES HasMemberFnTraitsTest.cpp
636       TEST indestructible_test SOURCES IndestructibleTest.cpp
637       TEST indexed_mem_pool_test BROKEN
638         SOURCES IndexedMemPoolTest.cpp
639       # MSVC Preprocessor stringizing raw string literals bug
640       #TEST json_test SOURCES JsonTest.cpp
641       TEST json_other_test
642         CONTENT_DIR json_test_data/
643         SOURCES
644           JsonOtherTest.cpp
645       TEST lazy_test SOURCES LazyTest.cpp
646       TEST lock_traits_test SOURCES LockTraitsTest.cpp
647       TEST locks_test SOURCES SmallLocksTest.cpp SpinLockTest.cpp
648       TEST logging_test SOURCES LoggingTest.cpp
649       TEST math_test SOURCES MathTest.cpp
650       TEST map_util_test SOURCES MapUtilTest.cpp
651       TEST memcpy_test SOURCES MemcpyTest.cpp
652       TEST memory_idler_test SOURCES MemoryIdlerTest.cpp
653       TEST memory_test SOURCES MemoryTest.cpp
654       TEST move_wrapper_test SOURCES MoveWrapperTest.cpp
655       TEST mpmc_pipeline_test SOURCES MPMCPipelineTest.cpp
656       TEST mpmc_queue_test SLOW
657         SOURCES MPMCQueueTest.cpp
658       TEST network_address_test HANGING
659         SOURCES
660           IPAddressTest.cpp
661           MacAddressTest.cpp
662           SocketAddressTest.cpp
663       TEST optional_test SOURCES OptionalTest.cpp
664       TEST packed_sync_ptr_test HANGING
665         SOURCES PackedSyncPtrTest.cpp
666       TEST padded_test SOURCES PaddedTest.cpp
667       #TEST poly_test SOURCES PolyTest.cpp
668       TEST portability_test SOURCES PortabilityTest.cpp
669       TEST producer_consumer_queue_test SLOW
670         SOURCES ProducerConsumerQueueTest.cpp
671       TEST random_test SOURCES RandomTest.cpp
672       TEST range_test SOURCES RangeTest.cpp
673       TEST safe_assert_test SOURCES SafeAssertTest.cpp
674       TEST scope_guard_test SOURCES ScopeGuardTest.cpp
675       # Heavily dependent on drand and srand48
676       #TEST shared_mutex_test SOURCES SharedMutexTest.cpp
677       TEST singleton_test SOURCES SingletonTest.cpp
678       TEST singleton_test_global SOURCES SingletonTestGlobal.cpp
679       TEST singleton_thread_local_test SOURCES SingletonThreadLocalTest.cpp
680       TEST singletonvault_c_test SOURCES SingletonVaultCTest.cpp
681       TEST small_vector_test SOURCES small_vector_test.cpp
682       TEST sorted_vector_types_test SOURCES sorted_vector_test.cpp
683       TEST string_test SOURCES StringTest.cpp
684       TEST synchronized_test SOURCES SynchronizedTest.cpp
685       TEST thread_cached_int_test SOURCES ThreadCachedIntTest.cpp
686       TEST thread_local_test SOURCES ThreadLocalTest.cpp
687       TEST timeout_queue_test SOURCES TimeoutQueueTest.cpp
688       TEST token_bucket_test SOURCES TokenBucketTest.cpp
689       TEST traits_test SOURCES TraitsTest.cpp
690       TEST try_test SOURCES TryTest.cpp
691       TEST unit_test SOURCES UnitTest.cpp
692       TEST uri_test SOURCES UriTest.cpp
693       TEST varint_test SOURCES VarintTest.cpp
694   )
695 endif()