Call onRecycle after element is marked as deallocated in IndexedMemPool
[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 if (MSVC_VERSION EQUAL 1910 OR MSVC_VERSION EQUAL 1911)
20   set(MSVC_IS_2017 ON)
21 elseif (MSVC_VERSION EQUAL 1900)
22   set(MSVC_IS_2017 OFF)
23 else()
24   message(FATAL_ERROR "This build script only supports building '${MSVC_VERSION}' Folly on 64-bit Windows with Visual Studio 2015 or Visual Studio 2017.")
25 endif()
26
27 # Check architecture OS
28 if (NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
29   message(FATAL_ERROR "Folly requires a 64bit OS")
30 endif()
31 if(NOT "${CMAKE_SYSTEM_NAME}" STREQUAL "Windows")
32   message(FATAL_ERROR "You should only be using CMake to build Folly if you are on Windows!")
33 endif()
34
35 set(FOLLY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/folly")
36
37 # Generate a few tables and create the main config file.
38 find_package(PythonInterp REQUIRED)
39 add_custom_command(
40   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
41   COMMAND ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_escape_tables.py"
42   DEPENDS ${FOLLY_DIR}/build/generate_escape_tables.py
43   WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/folly/build/
44   COMMENT "Generating the escape tables..." VERBATIM
45 )
46 add_custom_command(
47   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
48   COMMAND ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_format_tables.py"
49   DEPENDS ${FOLLY_DIR}/build/generate_format_tables.py
50   WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/folly/build/
51   COMMENT "Generating the format tables..." VERBATIM
52 )
53 add_custom_command(
54   OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp"
55   COMMAND ${PYTHON_EXECUTABLE} "${FOLLY_DIR}/build/generate_varint_tables.py"
56   DEPENDS ${FOLLY_DIR}/build/generate_varint_tables.py
57   WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/folly/build/
58   COMMENT "Generating the group varint tables..." VERBATIM
59 )
60
61 include(folly-deps) # Find the required packages
62 if (LIBPTHREAD_FOUND)
63   set(FOLLY_HAVE_PTHREAD ON)
64 endif()
65 configure_file(
66   ${CMAKE_CURRENT_SOURCE_DIR}/CMake/folly-config.h.cmake
67   ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
68 )
69
70 include(FollyCompiler)
71 include(FollyFunctions)
72
73 # Main folly library files
74 auto_sources(files "*.cpp" "RECURSE" "${FOLLY_DIR}")
75 auto_sources(hfiles "*.h" "RECURSE" "${FOLLY_DIR}")
76
77 # No need for tests or benchmarks, and we can't build most experimental stuff.
78 REMOVE_MATCHES_FROM_LISTS(files hfiles
79   MATCHES
80     "/build/"
81     "/experimental/exception_tracer/"
82     "/experimental/hazptr/bench/"
83     "/experimental/hazptr/example/"
84     "/experimental/symbolizer/"
85     "/futures/exercises/"
86     "/test/"
87     "Benchmark.cpp$"
88     "Test.cpp$"
89   IGNORE_MATCHES
90     "/Benchmark.cpp$"
91 )
92 list(REMOVE_ITEM files
93   ${FOLLY_DIR}/Subprocess.cpp
94   ${FOLLY_DIR}/SingletonStackTrace.cpp
95   ${FOLLY_DIR}/experimental/JSONSchemaTester.cpp
96   ${FOLLY_DIR}/experimental/RCUUtils.cpp
97   ${FOLLY_DIR}/experimental/io/AsyncIO.cpp
98   ${FOLLY_DIR}/experimental/io/HugePageUtil.cpp
99   ${FOLLY_DIR}/futures/test/Benchmark.cpp
100 )
101 list(REMOVE_ITEM hfiles
102   ${FOLLY_DIR}/Fingerprint.h
103   ${FOLLY_DIR}/detail/SlowFingerprint.h
104   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
105   ${FOLLY_DIR}/experimental/RCURefCount.h
106   ${FOLLY_DIR}/experimental/RCUUtils.h
107   ${FOLLY_DIR}/experimental/io/AsyncIO.h
108 )
109
110 add_library(folly_base OBJECT
111   ${files} ${hfiles}
112   ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
113   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
114   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
115   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp
116 )
117 auto_source_group(folly ${FOLLY_DIR} ${files} ${hfiles})
118 apply_folly_compile_options_to_target(folly_base)
119 target_include_directories(folly_base PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
120 # Add the generated files to the correct source group.
121 source_group("folly" FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h)
122 source_group("folly\\build" FILES
123   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/EscapeTables.cpp
124   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
125   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FormatTables.cpp
126   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/GroupVarintTables.cpp
127 )
128
129 set(FOLLY_SHINY_DEPENDENCIES
130   Boost::chrono
131   Boost::context
132   Boost::date_time
133   Boost::filesystem
134   Boost::program_options
135   Boost::regex
136   Boost::system
137   OpenSSL::SSL
138   OpenSSL::Crypto
139 )
140
141 set(FOLLY_LINK_LIBRARIES
142   ${DOUBLE_CONVERSION_LIBRARY}
143   ${LIBEVENT_LIB}
144   ${LIBGFLAGS_LIBRARY}
145   ${LIBGLOG_LIBRARY}
146   Ws2_32.lib
147
148   ${FOLLY_SHINY_DEPENDENCIES}
149 )
150
151 target_include_directories(folly_base
152   PUBLIC
153     ${DOUBLE_CONVERSION_INCLUDE_DIR}
154     ${LIBGFLAGS_INCLUDE_DIR}
155     ${LIBGLOG_INCLUDE_DIR}
156     ${LIBEVENT_INCLUDE_DIR}
157     $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
158 )
159
160 foreach (LIB ${FOLLY_SHINY_DEPENDENCIES})
161   target_include_directories(folly_base PUBLIC $<TARGET_PROPERTY:${LIB},INCLUDE_DIRECTORIES>)
162 endforeach()
163
164 if (FOLLY_HAVE_PTHREAD)
165   target_include_directories(folly_base PUBLIC ${LIBPTHREAD_INCLUDE_DIRS})
166   list(APPEND FOLLY_LINK_LIBRARIES ${LIBPTHREAD_LIBRARIES})
167 endif()
168
169 # Now to generate the fingerprint tables
170 add_executable(GenerateFingerprintTables
171   ${FOLLY_DIR}/build/GenerateFingerprintTables.cpp
172   $<TARGET_OBJECTS:folly_base>
173 )
174 target_link_libraries(GenerateFingerprintTables PRIVATE ${FOLLY_LINK_LIBRARIES})
175 target_include_directories(GenerateFingerprintTables PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
176 add_dependencies(GenerateFingerprintTables folly_base)
177 apply_folly_compile_options_to_target(GenerateFingerprintTables)
178 set_property(TARGET GenerateFingerprintTables PROPERTY FOLDER "Build")
179 source_group("" FILES ${FOLLY_DIR}/build/GenerateFingerprintTables.cpp)
180
181 # Compile the fingerprint tables.
182 add_custom_command(
183   OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
184   COMMAND GenerateFingerprintTables
185   DEPENDS GenerateFingerprintTables
186   WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/folly/build/
187   COMMENT "Generating the fingerprint tables..."
188 )
189 add_library(folly_fingerprint STATIC
190   ${CMAKE_CURRENT_BINARY_DIR}/folly/build/FingerprintTables.cpp
191   ${FOLLY_DIR}/Fingerprint.h
192   ${FOLLY_DIR}/detail/SlowFingerprint.h
193   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
194   $<TARGET_OBJECTS:folly_base>
195 )
196 target_link_libraries(folly_fingerprint PRIVATE ${FOLLY_LINK_LIBRARIES})
197 target_include_directories(folly_fingerprint PRIVATE $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
198 add_dependencies(folly_fingerprint folly_base)
199 apply_folly_compile_options_to_target(folly_fingerprint)
200
201 # We want to generate a single library and target for folly, but we needed a
202 # two-stage compile for the fingerprint tables, so we create a phony source
203 # file that we modify whenever the base libraries change, causing folly to be
204 # re-linked, making things happy.
205 add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp
206   COMMAND ${CMAKE_COMMAND} -E touch ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp
207   DEPENDS folly_base folly_fingerprint
208 )
209 add_library(folly ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp $<TARGET_OBJECTS:folly_base>)
210 apply_folly_compile_options_to_target(folly)
211 source_group("" FILES ${CMAKE_CURRENT_BINARY_DIR}/folly_dep.cpp)
212
213 target_link_libraries(folly PUBLIC ${FOLLY_LINK_LIBRARIES})
214 target_include_directories(folly PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>)
215
216 install(TARGETS folly
217   EXPORT folly
218   RUNTIME DESTINATION bin
219   LIBRARY DESTINATION lib
220   ARCHIVE DESTINATION lib)
221 auto_install_files(folly ${FOLLY_DIR}
222   ${hfiles}
223   ${FOLLY_DIR}/Fingerprint.h
224   ${FOLLY_DIR}/detail/SlowFingerprint.h
225   ${FOLLY_DIR}/detail/FingerprintPolynomial.h
226 )
227 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h DESTINATION include/folly)
228 install(
229   EXPORT folly
230   DESTINATION share/folly
231   NAMESPACE Folly::
232   FILE folly-targets.cmake
233 )
234
235 # We need a wrapper config file to do the find_package calls to ensure
236 # that all our dependencies are available to link against.
237 file(
238   COPY ${CMAKE_CURRENT_SOURCE_DIR}/CMake/folly-deps.cmake
239   DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/
240 )
241 file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/folly-deps.cmake "\ninclude(folly-targets.cmake)\n")
242 install(FILES ${CMAKE_CURRENT_BINARY_DIR}/folly-deps.cmake DESTINATION share/folly RENAME folly-config.cmake)
243
244 option(BUILD_TESTS "If enabled, compile the tests." OFF)
245 option(BUILD_HANGING_TESTS "If enabled, compile tests that are known to hang." OFF)
246 option(BUILD_SLOW_TESTS "If enabled, compile tests that take a while to run in debug mode." OFF)
247 if (BUILD_TESTS)
248   find_package(GMock MODULE REQUIRED)
249
250   add_library(folly_test_support
251     ${FOLLY_DIR}/test/DeterministicSchedule.cpp
252     ${FOLLY_DIR}/test/DeterministicSchedule.h
253     ${FOLLY_DIR}/test/SingletonTestStructs.cpp
254     ${FOLLY_DIR}/test/SocketAddressTestHelper.cpp
255     ${FOLLY_DIR}/test/SocketAddressTestHelper.h
256     ${FOLLY_DIR}/io/async/test/BlockingSocket.h
257     ${FOLLY_DIR}/io/async/test/MockAsyncServerSocket.h
258     ${FOLLY_DIR}/io/async/test/MockAsyncSocket.h
259     ${FOLLY_DIR}/io/async/test/MockAsyncSSLSocket.h
260     ${FOLLY_DIR}/io/async/test/MockAsyncTransport.h
261     ${FOLLY_DIR}/io/async/test/MockAsyncUDPSocket.h
262     ${FOLLY_DIR}/io/async/test/MockTimeoutManager.h
263     ${FOLLY_DIR}/io/async/test/ScopedBoundPort.cpp
264     ${FOLLY_DIR}/io/async/test/ScopedBoundPort.h
265     ${FOLLY_DIR}/io/async/test/SocketPair.cpp
266     ${FOLLY_DIR}/io/async/test/SocketPair.h
267     ${FOLLY_DIR}/io/async/test/TestSSLServer.cpp
268     ${FOLLY_DIR}/io/async/test/TestSSLServer.h
269     ${FOLLY_DIR}/io/async/test/TimeUtil.cpp
270     ${FOLLY_DIR}/io/async/test/TimeUtil.h
271     ${FOLLY_DIR}/io/async/test/UndelayedDestruction.h
272     ${FOLLY_DIR}/io/async/test/Util.h
273   )
274   target_compile_definitions(folly_test_support
275     PUBLIC
276       ${LIBGMOCK_DEFINES}
277   )
278   target_include_directories(folly_test_support
279     PUBLIC
280       ${LIBGMOCK_INCLUDE_DIR}
281   )
282   target_link_libraries(folly_test_support
283     PUBLIC
284       Boost::thread
285       folly
286       ${LIBGMOCK_LIBRARY}
287   )
288   apply_folly_compile_options_to_target(folly_test_support)
289
290   folly_define_tests(
291     DIRECTORY experimental/test/
292       TEST autotimer_test SOURCES AutoTimerTest.cpp
293       TEST bits_test_2 SOURCES BitsTest.cpp
294       TEST bitvector_test SOURCES BitVectorCodingTest.cpp
295       TEST dynamic_parser_test SOURCES DynamicParserTest.cpp
296       TEST eliasfano_test SOURCES EliasFanoCodingTest.cpp
297       TEST event_count_test SOURCES EventCountTest.cpp
298       TEST function_scheduler_test_2 SOURCES FunctionSchedulerTest.cpp
299       TEST future_dag_test SOURCES FutureDAGTest.cpp
300       TEST json_schema_test SOURCES JSONSchemaTest.cpp
301       TEST lock_free_ring_buffer_test SOURCES LockFreeRingBufferTest.cpp
302       #TEST nested_command_line_app_test SOURCES NestedCommandLineAppTest.cpp
303       #TEST program_options_test SOURCES ProgramOptionsTest.cpp
304       # Depends on liburcu
305       #TEST read_mostly_shared_ptr_test SOURCES ReadMostlySharedPtrTest.cpp
306       #TEST ref_count_test SOURCES RefCountTest.cpp
307       TEST stringkeyed_test SOURCES StringKeyedTest.cpp
308       TEST test_util_test SOURCES TestUtilTest.cpp
309       TEST tuple_ops_test SOURCES TupleOpsTest.cpp
310
311     DIRECTORY experimental/io/test/
312       # Depends on libaio
313       #TEST async_io_test SOURCES AsyncIOTest.cpp
314       TEST fs_util_test SOURCES FsUtilTest.cpp
315
316     DIRECTORY experimental/logging/test/
317       TEST logging-test
318         HEADERS
319           TestLogHandler.h
320           XlogHeader1.h
321           XlogHeader2.h
322         SOURCES
323           AsyncFileWriterTest.cpp
324           GlogFormatterTest.cpp
325           ImmediateFileWriterTest.cpp
326           LogCategoryTest.cpp
327           LoggerDBTest.cpp
328           LoggerTest.cpp
329           LogLevelTest.cpp
330           LogMessageTest.cpp
331           LogNameTest.cpp
332           LogStreamTest.cpp
333           RateLimiterTest.cpp
334           StandardLogHandlerTest.cpp
335           XlogFile1.cpp
336           XlogFile2.cpp
337           XlogTest.cpp
338
339     DIRECTORY fibers/test/
340       TEST fibers_test SOURCES FibersTest.cpp
341
342     DIRECTORY futures/test/
343       TEST futures-test
344         HEADERS
345           ThenCompileTest.h
346         SOURCES
347           BarrierTest.cpp
348           CollectTest.cpp
349           ContextTest.cpp
350           CoreTest.cpp
351           EnsureTest.cpp
352           ExecutorTest.cpp
353           FSMTest.cpp
354           FilterTest.cpp
355           # MSVC SFINAE bug
356           #FutureTest.cpp
357           HeaderCompileTest.cpp
358           InterruptTest.cpp
359           MapTest.cpp
360           NonCopyableLambdaTest.cpp
361           PollTest.cpp
362           PromiseTest.cpp
363           ReduceTest.cpp
364           # MSVC SFINAE bug
365           #RetryingTest.cpp
366           SelfDestructTest.cpp
367           SharedPromiseTest.cpp
368           ThenCompileTest.cpp
369           ThenTest.cpp
370           TimekeeperTest.cpp
371           TimesTest.cpp
372           UnwrapTest.cpp
373           ViaTest.cpp
374           WaitTest.cpp
375           WhenTest.cpp
376           WhileDoTest.cpp
377           WillEqualTest.cpp
378           WindowTest.cpp
379
380     DIRECTORY gen/test/
381       # MSVC bug can't resolve initializer_list constructor properly
382       #TEST base_test SOURCES BaseTest.cpp
383       TEST combine_test SOURCES CombineTest.cpp
384       TEST parallel_map_test SOURCES ParallelMapTest.cpp
385       TEST parallel_test SOURCES ParallelTest.cpp
386
387     DIRECTORY io/test/
388       TEST compression_test SOURCES CompressionTest.cpp
389       TEST iobuf_test SOURCES IOBufTest.cpp
390       TEST iobuf_cursor_test SOURCES IOBufCursorTest.cpp
391       TEST iobuf_queue_test SOURCES IOBufQueueTest.cpp
392       TEST record_io_test SOURCES RecordIOTest.cpp
393       TEST ShutdownSocketSetTest HANGING
394         SOURCES ShutdownSocketSetTest.cpp
395
396     DIRECTORY io/async/test/
397       TEST async_test
398         CONTENT_DIR certs/
399         HEADERS
400           AsyncSocketTest.h
401           AsyncSSLSocketTest.h
402         SOURCES
403           AsyncPipeTest.cpp
404           AsyncSocketExceptionTest.cpp
405           AsyncSocketTest.cpp
406           AsyncSocketTest2.cpp
407           AsyncSSLSocketTest.cpp
408           AsyncSSLSocketTest2.cpp
409           AsyncSSLSocketWriteTest.cpp
410           AsyncTransportTest.cpp
411           # This is disabled because it depends on things that don't exist
412           # on Windows.
413           #EventHandlerTest.cpp
414       TEST async_timeout_test SOURCES AsyncTimeoutTest.cpp
415       TEST AsyncUDPSocketTest SOURCES AsyncUDPSocketTest.cpp
416       TEST DelayedDestructionTest SOURCES DelayedDestructionTest.cpp
417       TEST DelayedDestructionBaseTest SOURCES DelayedDestructionBaseTest.cpp
418       TEST DestructorCheckTest SOURCES DestructorCheckTest.cpp
419       TEST EventBaseTest SOURCES EventBaseTest.cpp
420       TEST EventBaseLocalTest SOURCES EventBaseLocalTest.cpp
421       TEST HHWheelTimerTest SOURCES HHWheelTimerTest.cpp
422       TEST HHWheelTimerSlowTests SLOW
423         SOURCES HHWheelTimerSlowTests.cpp
424       TEST NotificationQueueTest SOURCES NotificationQueueTest.cpp
425       TEST RequestContextTest SOURCES RequestContextTest.cpp
426       TEST ScopedEventBaseThreadTest SOURCES ScopedEventBaseThreadTest.cpp
427       TEST ssl_session_test SOURCES SSLSessionTest.cpp
428       TEST writechain_test SOURCES WriteChainAsyncTransportWrapperTest.cpp
429
430     DIRECTORY io/async/ssl/test/
431       TEST ssl_errors_test SOURCES SSLErrorsTest.cpp
432
433     DIRECTORY portability/test/
434       TEST constexpr_test SOURCES ConstexprTest.cpp
435       TEST libgen-test SOURCES LibgenTest.cpp
436       TEST time-test SOURCES TimeTest.cpp
437
438     DIRECTORY ssl/test/
439       TEST openssl_hash_test SOURCES OpenSSLHashTest.cpp
440
441     DIRECTORY stats/test/
442       TEST histogram_test SOURCES HistogramTest.cpp
443       TEST timeseries_histogram_test SOURCES TimeseriesHistogramTest.cpp
444       TEST timeseries_test SOURCES TimeseriesTest.cpp
445
446     DIRECTORY test/
447       TEST ahm_int_stress_test SOURCES AHMIntStressTest.cpp
448       TEST apply_tuple_test SOURCES ApplyTupleTest.cpp
449       TEST arena_test SOURCES ArenaTest.cpp
450       TEST arena_smartptr_test SOURCES ArenaSmartPtrTest.cpp
451       TEST array_test SOURCES ArrayTest.cpp
452       TEST ascii_check_test SOURCES AsciiCaseInsensitiveTest.cpp
453       TEST atomic_bit_set_test SOURCES AtomicBitSetTest.cpp
454       TEST atomic_hash_array_test SOURCES AtomicHashArrayTest.cpp
455       TEST atomic_hash_map_test HANGING
456         SOURCES AtomicHashMapTest.cpp
457       TEST atomic_linked_list_test SOURCES AtomicLinkedListTest.cpp
458       TEST atomic_struct_test SOURCES AtomicStructTest.cpp
459       TEST atomic_unordered_map_test SOURCES AtomicUnorderedMapTest.cpp
460       TEST baton_test SOURCES BatonTest.cpp
461       TEST bit_iterator_test SOURCES BitIteratorTest.cpp
462       TEST bits_test SOURCES BitsTest.cpp
463       TEST cache_locality_test SOURCES CacheLocalityTest.cpp
464       TEST cacheline_padded_test SOURCES CachelinePaddedTest.cpp
465       TEST call_once_test SOURCES CallOnceTest.cpp
466       TEST checksum_test SOURCES ChecksumTest.cpp
467       TEST clock_gettime_wrappers_test SOURCES ClockGettimeWrappersTest.cpp
468       TEST concurrent_skip_list_test SOURCES ConcurrentSkipListTest.cpp
469       TEST container_traits_test SOURCES ContainerTraitsTest.cpp
470       TEST conv_test SOURCES ConvTest.cpp
471       TEST cpu_id_test SOURCES CpuIdTest.cpp
472       TEST demangle_test SOURCES DemangleTest.cpp
473       TEST deterministic_schedule_test SOURCES DeterministicScheduleTest.cpp
474       TEST discriminated_ptr_test SOURCES DiscriminatedPtrTest.cpp
475       TEST dynamic_test SOURCES DynamicTest.cpp
476       TEST dynamic_converter_test SOURCES DynamicConverterTest.cpp
477       TEST dynamic_other_test SOURCES DynamicOtherTest.cpp
478       TEST endian_test SOURCES EndianTest.cpp
479       TEST enumerate_test SOURCES EnumerateTest.cpp
480       TEST evicting_cache_map_test SOURCES EvictingCacheMapTest.cpp
481       TEST exception_test SOURCES ExceptionTest.cpp
482       TEST exception_wrapper_test SOURCES ExceptionWrapperTest.cpp
483       TEST expected_test SOURCES ExpectedTest.cpp
484       TEST fbvector_test SOURCES FBVectorTest.cpp
485       TEST file_test SOURCES FileTest.cpp
486       #TEST file_lock_test SOURCES FileLockTest.cpp
487       TEST file_util_test HANGING
488         SOURCES FileUtilTest.cpp
489       TEST fingerprint_test SOURCES FingerprintTest.cpp
490       TEST foreach_test SOURCES ForeachTest.cpp
491       TEST format_other_test SOURCES FormatOtherTest.cpp
492       TEST format_test SOURCES FormatTest.cpp
493       TEST function_scheduler_test SOURCES FunctionSchedulerTest.cpp
494       TEST function_test SOURCES FunctionTest.cpp
495       TEST function_ref_test SOURCES FunctionRefTest.cpp
496       TEST futex_test SOURCES FutexTest.cpp
497       TEST group_varint_test SOURCES GroupVarintTest.cpp
498       TEST group_varint_test_ssse3 SOURCES GroupVarintTest.cpp
499       TEST has_member_fn_traits_test SOURCES HasMemberFnTraitsTest.cpp
500       TEST hash_test SOURCES HashTest.cpp
501       TEST indestructible_test SOURCES IndestructibleTest.cpp
502       TEST indexed_mem_pool_test SOURCES IndexedMemPoolTest.cpp
503       # MSVC Preprocessor stringizing raw string literals bug
504       #TEST json_test SOURCES JsonTest.cpp
505       TEST json_other_test
506         CONTENT_DIR json_test_data/
507         SOURCES
508           JsonOtherTest.cpp
509       TEST lazy_test SOURCES LazyTest.cpp
510       TEST lifosem_test SOURCES LifoSemTests.cpp
511       TEST lock_traits_test SOURCES LockTraitsTest.cpp
512       TEST locks_test SOURCES SmallLocksTest.cpp SpinLockTest.cpp
513       TEST logging_test SOURCES LoggingTest.cpp
514       TEST mallctl_helper_test SOURCES MallctlHelperTest.cpp
515       TEST math_test SOURCES MathTest.cpp
516       TEST map_util_test SOURCES MapUtilTest.cpp
517       TEST memcpy_test SOURCES MemcpyTest.cpp
518       TEST memory_idler_test SOURCES MemoryIdlerTest.cpp
519       TEST memory_mapping_test SOURCES MemoryMappingTest.cpp
520       TEST memory_test SOURCES MemoryTest.cpp
521       TEST merge SOURCES MergeTest.cpp
522       TEST move_wrapper_test SOURCES MoveWrapperTest.cpp
523       TEST mpmc_pipeline_test SOURCES MPMCPipelineTest.cpp
524       TEST mpmc_queue_test SLOW
525         SOURCES MPMCQueueTest.cpp
526       TEST network_address_test HANGING
527         SOURCES
528           IPAddressTest.cpp
529           MacAddressTest.cpp
530           SocketAddressTest.cpp
531       TEST optional_test SOURCES OptionalTest.cpp
532       TEST packed_sync_ptr_test HANGING
533         SOURCES PackedSyncPtrTest.cpp
534       TEST padded_test SOURCES PaddedTest.cpp
535       TEST partial_test SOURCES PartialTest.cpp
536       TEST portability_test SOURCES PortabilityTest.cpp
537       TEST producer_consumer_queue_test SLOW
538         SOURCES ProducerConsumerQueueTest.cpp
539       TEST r_w_spin_lock_test SOURCES RWSpinLockTest.cpp
540       TEST random_test SOURCES RandomTest.cpp
541       TEST range_test SOURCES RangeTest.cpp
542       TEST safe_assert_test SOURCES SafeAssertTest.cpp
543       TEST scope_guard_test SOURCES ScopeGuardTest.cpp
544       # Heavily dependent on drand and srand48
545       #TEST shared_mutex_test SOURCES SharedMutexTest.cpp
546       TEST shell_test SOURCES ShellTest.cpp
547       TEST singleton_test SOURCES SingletonTest.cpp
548       TEST singleton_test_global SOURCES SingletonTestGlobal.cpp
549       TEST singleton_thread_local_test SOURCES SingletonThreadLocalTest.cpp
550       TEST singletonvault_c_test SOURCES SingletonVaultCTest.cpp
551       TEST small_vector_test SOURCES small_vector_test.cpp
552       TEST sorted_vector_types_test SOURCES sorted_vector_test.cpp
553       TEST sparse_byte_set_test SOURCES SparseByteSetTest.cpp
554       TEST spooky_hash_v1_test SOURCES SpookyHashV1Test.cpp
555       TEST spooky_hash_v2_test SOURCES SpookyHashV2Test.cpp
556       TEST string_test SOURCES StringTest.cpp
557       #TEST subprocess_test SOURCES SubprocessTest.cpp
558       TEST synchronized_test SOURCES SynchronizedTest.cpp
559       TEST thread_cached_arena_test SOURCES ThreadCachedArenaTest.cpp
560       TEST thread_cached_int_test SOURCES ThreadCachedIntTest.cpp
561       TEST thread_id_test SOURCES ThreadIdTest.cpp
562       TEST thread_local_test SOURCES ThreadLocalTest.cpp
563       TEST thread_name_test SOURCES ThreadNameTest.cpp
564       TEST timeout_queue_test SOURCES TimeoutQueueTest.cpp
565       TEST token_bucket_test SOURCES TokenBucketTest.cpp
566       TEST traits_test SOURCES TraitsTest.cpp
567       TEST try_test SOURCES TryTest.cpp
568       TEST unit_test SOURCES UnitTest.cpp
569       TEST uri_test SOURCES UriTest.cpp
570       TEST varint_test SOURCES VarintTest.cpp
571   )
572 endif()