-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
CMakeLists.txt
1239 lines (1148 loc) · 47.4 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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
# We use the GoogleTest module if it is available (only in CMake 3.9+)
# It requires CMP0054 and CMP0057 to be enabled.
if (POLICY CMP0054)
cmake_policy(SET CMP0054 NEW)
endif()
if (POLICY CMP0057)
cmake_policy(SET CMP0057 NEW)
endif()
# CMP0075 Include file check macros honor CMAKE_REQUIRED_LIBRARIES
if(POLICY CMP0075)
cmake_policy(SET CMP0075 NEW)
endif()
# includes
set(CMAKE_MODULE_PATH
"${CMAKE_CURRENT_SOURCE_DIR}/CMake"
# for in-fbsource builds
"${CMAKE_CURRENT_SOURCE_DIR}/../opensource/fbcode_builder/CMake"
# For shipit-transformed builds
"${CMAKE_CURRENT_SOURCE_DIR}/build/fbcode_builder/CMake"
${CMAKE_MODULE_PATH})
# package information
set(PACKAGE_NAME "folly")
if (NOT DEFINED PACKAGE_VERSION)
set(PACKAGE_VERSION "0.58.0-dev")
endif()
set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}")
set(PACKAGE_TARNAME "${PACKAGE_NAME}-${PACKAGE_VERSION}")
set(PACKAGE_BUGREPORT "https://github.com/facebook/folly/issues")
# 150+ tests in the root folder anyone? No? I didn't think so.
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
project(${PACKAGE_NAME} CXX C ASM)
set(INCLUDE_INSTALL_DIR include CACHE STRING
"The subdirectory where header files should be installed")
set(LIB_INSTALL_DIR lib CACHE STRING
"The subdirectory where libraries should be installed")
set(BIN_INSTALL_DIR bin CACHE STRING
"The subdirectory where binaries should be installed")
set(CMAKE_INSTALL_DIR lib/cmake/folly CACHE STRING
"The subdirectory where CMake package config files should be installed")
option(BUILD_SHARED_LIBS
"If enabled, build folly as a shared library. \
This is generally discouraged, since folly does not commit to having \
a stable ABI."
OFF
)
# Mark BUILD_SHARED_LIBS as an "advanced" option, since enabling it
# is generally discouraged.
mark_as_advanced(BUILD_SHARED_LIBS)
set(FOLLY_SUPPORT_SHARED_LIBRARY "${BUILD_SHARED_LIBS}")
include(FBBuildOptions)
fb_activate_static_library_option()
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
message(STATUS "setting C++ standard to C++${CMAKE_CXX_STANDARD}")
endif()
if(NOT DEFINED IS_X86_64_ARCH AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64|AMD64")
set(IS_X86_64_ARCH TRUE)
else()
set(IS_X86_64_ARCH FALSE)
endif()
if(NOT DEFINED IS_AARCH64_ARCH AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64")
set(IS_AARCH64_ARCH TRUE)
else()
set(IS_AARCH64_ARCH FALSE)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
# Check target architecture
if (NOT CMAKE_SIZEOF_VOID_P EQUAL 8)
message(FATAL_ERROR "Folly requires a 64bit target architecture.")
endif()
if (MSVC_VERSION LESS 1900)
message(
FATAL_ERROR
"This build script only supports building Folly on 64-bit Windows with "
"at least Visual Studio 2017. "
"MSVC version '${MSVC_VERSION}' is not supported."
)
endif()
endif()
set(TOP_DIR "${CMAKE_CURRENT_SOURCE_DIR}")
set(FOLLY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/folly")
set(
FOLLY_DIR_PREFIXES
"${CMAKE_CURRENT_SOURCE_DIR}:${CMAKE_CURRENT_BINARY_DIR}"
)
# https://gitlab.kitware.com/cmake/cmake/-/issues/18580#note_1405108
string(REGEX REPLACE "(.)" "\\\\\\1" FOLLY_DIR_REGEX_ESCAPED "${FOLLY_DIR}")
include(GNUInstallDirs)
set(CMAKE_THREAD_PREFER_PTHREAD ON)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
set(FOLLY_HAVE_PTHREAD "${CMAKE_USE_PTHREADS_INIT}")
list(APPEND CMAKE_REQUIRED_LIBRARIES Threads::Threads)
list(APPEND FOLLY_LINK_LIBRARIES Threads::Threads)
if(MSVC)
include(FollyCompilerMSVC)
else()
include(FollyCompilerUnix)
endif()
include(FollyFunctions)
include(folly-deps) # Find the required packages
include(FollyConfigChecks)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/CMake/folly-config.h.cmake
${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
)
# Define FOLLY_XLOG_STRIP_PREFIXES when compiling our sources so that
# folly/logging will automatically choose the correct log category names,
# using only the relative portion of the source file name inside the
# folly repository.
set_property(
DIRECTORY
${CMAKE_CURRENT_SOURCE_DIR}
APPEND
PROPERTY
COMPILE_DEFINITIONS
"FOLLY_XLOG_STRIP_PREFIXES=\"${CMAKE_SOURCE_DIR}:${CMAKE_BINARY_DIR}\""
)
# We currently build the main libfolly library by finding all sources
# and header files. We then exclude specific files below.
#
# In the future it would perhaps be nicer to explicitly list the files we want
# to include, and to move the source lists in to separate per-subdirectory
# CMakeLists.txt files.
auto_sources(files "*.cpp" "RECURSE" "${FOLLY_DIR}")
auto_sources(hfiles "*.h" "RECURSE" "${FOLLY_DIR}")
# Exclude tests, benchmarks, and other standalone utility executables from the
# library sources. Test sources are listed separately below.
REMOVE_MATCHES_FROM_LISTS(files hfiles
MATCHES
"^${FOLLY_DIR_REGEX_ESCAPED}/build/"
"^${FOLLY_DIR_REGEX_ESCAPED}/docs/examples/"
"^${FOLLY_DIR_REGEX_ESCAPED}/logging/example/"
"^${FOLLY_DIR_REGEX_ESCAPED}/(.*/)?test/"
"^${FOLLY_DIR_REGEX_ESCAPED}/(.*/)?tool/"
"^${FOLLY_DIR_REGEX_ESCAPED}/facebook/"
"Benchmark.cpp$"
"Test.cpp$"
)
# Exclude exception tracer, which is necessary to statically link libstdc++
if (${FOLLY_NO_EXCEPTION_TRACER})
REMOVE_MATCHES_FROM_LISTS(files hfiles
MATCHES
"^${FOLLY_DIR_REGEX_ESCAPED}/debugging/exception_tracer/"
)
endif()
list(REMOVE_ITEM files
${FOLLY_DIR}/python/error.cpp
${FOLLY_DIR}/python/executor.cpp
${FOLLY_DIR}/python/fibers.cpp
${FOLLY_DIR}/python/GILAwareManualExecutor.cpp
${FOLLY_DIR}/python/iobuf.cpp
${FOLLY_DIR}/python/iobuf_ext.cpp
${FOLLY_DIR}/python/ProactorExecutor.cpp
)
list(REMOVE_ITEM hfiles
${FOLLY_DIR}/python/fibers.h
${FOLLY_DIR}/python/GILAwareManualExecutor.h
${FOLLY_DIR}/python/iobuf_ext.h
${FOLLY_DIR}/python/ProactorExecutor.h
)
# Explicitly include utility library code from inside
# test subdirs
list(APPEND files
${FOLLY_DIR}/io/async/test/ScopedBoundPort.cpp
${FOLLY_DIR}/io/async/test/SocketPair.cpp
${FOLLY_DIR}/io/async/test/TimeUtil.cpp
)
list(APPEND hfiles
${FOLLY_DIR}/container/test/F14TestUtil.h
${FOLLY_DIR}/container/test/TrackingTypes.h
${FOLLY_DIR}/io/async/test/AsyncSSLSocketTest.h
${FOLLY_DIR}/io/async/test/AsyncSocketTest.h
${FOLLY_DIR}/io/async/test/AsyncSocketTest2.h
${FOLLY_DIR}/io/async/test/BlockingSocket.h
${FOLLY_DIR}/io/async/test/CallbackStateEnum.h
${FOLLY_DIR}/io/async/test/ConnCallback.h
${FOLLY_DIR}/io/async/test/MockAsyncSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncServerSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncSSLSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncTransport.h
${FOLLY_DIR}/io/async/test/MockAsyncUDPSocket.h
${FOLLY_DIR}/io/async/test/MockTimeoutManager.h
${FOLLY_DIR}/io/async/test/ScopedBoundPort.h
${FOLLY_DIR}/io/async/test/SocketPair.h
${FOLLY_DIR}/io/async/test/TFOUtil.h
${FOLLY_DIR}/io/async/test/TestSSLServer.h
${FOLLY_DIR}/io/async/test/TimeUtil.h
${FOLLY_DIR}/io/async/test/UndelayedDestruction.h
${FOLLY_DIR}/io/async/test/Util.h
${FOLLY_DIR}/synchronization/test/Semaphore.h
${FOLLY_DIR}/test/DeterministicSchedule.h
${FOLLY_DIR}/test/TestUtils.h
)
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
check_cxx_compiler_flag(-fcoroutines COMPILER_HAS_F_COROUTINES)
if (COMPILER_HAS_F_COROUTINES)
message(
STATUS
"GCC has support for C++ coroutines, setting flag for Folly build."
)
add_compile_options($<$<COMPILE_LANGUAGE:CXX>:-fcoroutines>)
else()
message(
STATUS
"GCC does not have support for C++ coroutines, "
"disabling Folly coroutine support."
)
endif()
endif()
# base64 SIMD files compilation
if (NOT(${IS_X86_64_ARCH}))
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} does not match x86_64, "
"skipping building SSE4.2 version of base64"
)
list(REMOVE_ITEM files ${FOLLY_DIR}/detail/base64_detail/Base64_SSE4_2.cpp)
else()
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} matches x86_64, "
"building SSE4.2 version of base64"
)
# MSVC does not have a way to enable just sse4.2, only avx.
# If we don't pass the flag, everything will still work but no warnings
if (NOT CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
set_source_files_properties(
${FOLLY_DIR}/detail/base64_detail/Base64_SSE4_2.cpp
PROPERTIES
COMPILE_FLAGS
-msse4.2
)
endif()
endif()
if (${LIBSODIUM_FOUND})
if (NOT(${IS_X86_64_ARCH}))
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} does not match x86_64, "
"skipping setting SSE2/AVX2 compile flags for LtHash SIMD code"
)
else()
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} matches x86_64, "
"setting SSE2/AVX2 compile flags for LtHash SIMD code"
)
set_source_files_properties(
${FOLLY_DIR}/crypto/detail/MathOperation_AVX2.cpp
PROPERTIES
COMPILE_FLAGS
-mavx -mavx2 -msse2
)
set_source_files_properties(
${FOLLY_DIR}/crypto/detail/MathOperation_Simple.cpp
PROPERTIES
COMPILE_FLAGS
-mno-avx -mno-avx2 -mno-sse2
)
set_source_files_properties(
${FOLLY_DIR}/crypto/detail/MathOperation_SSE2.cpp
PROPERTIES
COMPILE_FLAGS
-mno-avx -mno-avx2 -msse2
)
endif()
else()
list(REMOVE_ITEM files
${FOLLY_DIR}/crypto/Blake2xb.cpp
${FOLLY_DIR}/crypto/detail/MathOperation_AVX2.cpp
${FOLLY_DIR}/crypto/detail/MathOperation_Simple.cpp
${FOLLY_DIR}/crypto/detail/MathOperation_SSE2.cpp
${FOLLY_DIR}/crypto/LtHash.cpp
)
list(REMOVE_ITEM hfiles
${FOLLY_DIR}/crypto/Blake2xb.h
${FOLLY_DIR}/crypto/detail/LtHashInternal.h
${FOLLY_DIR}/crypto/LtHash-inl.h
${FOLLY_DIR}/crypto/LtHash.h
)
endif()
if (NOT ${LIBGFLAGS_FOUND})
list(REMOVE_ITEM files
${FOLLY_DIR}/cli/NestedCommandLineApp.cpp
${FOLLY_DIR}/cli/ProgramOptions.cpp
)
list(REMOVE_ITEM hfiles
${FOLLY_DIR}/cli/NestedCommandLineApp.h
${FOLLY_DIR}/cli/ProgramOptions.h
)
endif()
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
list(REMOVE_ITEM files
${FOLLY_DIR}/Subprocess.cpp
)
endif()
set(PCLMUL_FILES
${FOLLY_DIR}/external/fast-crc32/avx512_crc32c_v8s3x4.cpp
${FOLLY_DIR}/external/fast-crc32/sse_crc32c_v8s3x3.cpp
${FOLLY_DIR}/hash/detail/ChecksumDetail.cpp
${FOLLY_DIR}/hash/detail/Crc32CombineDetail.cpp
${FOLLY_DIR}/hash/detail/Crc32cDetail.cpp
)
check_cxx_compiler_flag(-mpclmul COMPILER_HAS_M_PCLMUL)
if (COMPILER_HAS_M_PCLMUL)
message(
STATUS
"compiler has flag pclmul, setting compile flag for ${PCLMUL_FILES}"
)
set_source_files_properties(
${PCLMUL_FILES}
PROPERTIES
COMPILE_OPTIONS
-mpclmul
)
else()
message(
STATUS
"compiler does not have flag pclmul, skipping setting compile flags for ${PCLMUL_FILES}"
)
endif()
if (IS_X86_64_ARCH AND NOT CMAKE_SYSTEM_NAME STREQUAL "Windows")
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} matches x86_64, "
"setting AVX512 compile flags for crc32c SIMD code"
)
set_property(
SOURCE
${FOLLY_DIR}/external/fast-crc32/avx512_crc32c_v8s3x4.cpp
APPEND PROPERTY COMPILE_OPTIONS
"-mavx512f" "-mavx512vl"
)
else()
# Windows doesn't nead the extra flags.
message(
STATUS
"arch ${CMAKE_LIBRARY_ARCHITECTURE} does not match x86_64, "
"skipping setting AVX512 compile flags for crc32c SIMD code"
)
endif()
list(APPEND folly_base_files
${files} ${hfiles}
)
if (IS_X86_64_ARCH AND NOT MSVC)
set_property(
SOURCE
${FOLLY_DIR}/memcpy.S
APPEND PROPERTY COMPILE_OPTIONS "-x" "assembler-with-cpp"
)
list(APPEND folly_base_files
${FOLLY_DIR}/memcpy.S
)
endif()
set(ARM_AOR_ASM_FILES
${FOLLY_DIR}/external/aor/memcpy-advsimd.S
${FOLLY_DIR}/external/aor/memcpy-armv8.S
${FOLLY_DIR}/external/aor/memcpy_sve.S
${FOLLY_DIR}/external/aor/memset-advsimd.S
${FOLLY_DIR}/external/aor/memcpy-mops.S
${FOLLY_DIR}/external/aor/memmove-mops.S
${FOLLY_DIR}/external/aor/memset-mops.S
)
if (IS_AARCH64_ARCH)
foreach (AOR_FILE IN LISTS ARM_AOR_ASM_FILES)
set_property(
SOURCE
${AOR_FILE}
APPEND PROPERTY COMPILE_OPTIONS "-x" "assembler-with-cpp"
)
list(APPEND folly_base_files
${AOR_FILE}
)
endforeach()
endif()
add_library(folly_base OBJECT
${folly_base_files}
${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
)
if (BUILD_SHARED_LIBS)
set_property(TARGET folly_base PROPERTY POSITION_INDEPENDENT_CODE ON)
endif()
auto_source_group(folly ${FOLLY_DIR} ${files} ${hfiles})
apply_folly_compile_options_to_target(folly_base)
# Add the generated files to the correct source group.
source_group("folly" FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h)
# Generate pkg-config variables from folly_deps before we add our own
# build/install-time include directory generator expressions
include(GenPkgConfig)
gen_pkgconfig_vars(FOLLY_PKGCONFIG folly_deps)
target_include_directories(folly_deps
BEFORE
INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
)
target_include_directories(folly_deps
INTERFACE
$<INSTALL_INTERFACE:include>
)
target_include_directories(folly_base
PUBLIC
$<TARGET_PROPERTY:folly_deps,INTERFACE_INCLUDE_DIRECTORIES>
)
target_compile_definitions(folly_base
PUBLIC
$<TARGET_PROPERTY:folly_deps,INTERFACE_COMPILE_DEFINITIONS>
)
set(FOLLY_INSTALL_TARGETS folly folly_deps)
option(PYTHON_EXTENSIONS
"Build Python Bindings for Folly, requires Cython and (BUILD_SHARED_LIBS=ON)"
OFF
)
add_library(folly
$<TARGET_OBJECTS:folly_base>
)
set_property(TARGET folly PROPERTY VERSION ${PACKAGE_VERSION})
apply_folly_compile_options_to_target(folly)
target_compile_features(folly INTERFACE cxx_generic_lambdas)
target_link_libraries(folly PUBLIC folly_deps)
# Test utilities exported for use by downstream projects
add_library(folly_test_util
${FOLLY_DIR}/test/DeterministicSchedule.cpp
${FOLLY_DIR}/json/JsonTestUtil.cpp
)
set_property(TARGET folly_test_util PROPERTY VERSION ${PACKAGE_VERSION})
target_link_libraries(folly_test_util
PUBLIC
${BOOST_LIBRARIES}
folly
${LIBGMOCK_LIBRARIES}
)
apply_folly_compile_options_to_target(folly_test_util)
list(APPEND FOLLY_INSTALL_TARGETS folly_test_util)
install(TARGETS ${FOLLY_INSTALL_TARGETS}
EXPORT folly
RUNTIME DESTINATION bin
LIBRARY DESTINATION ${LIB_INSTALL_DIR}
ARCHIVE DESTINATION ${LIB_INSTALL_DIR})
auto_install_files(folly ${FOLLY_DIR}
${hfiles}
)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/folly/folly-config.h
DESTINATION ${INCLUDE_INSTALL_DIR}/folly
COMPONENT dev
)
# Generate the folly-config.cmake file for installation so that
# downstream projects that use on folly can easily depend on it in their CMake
# files using "find_package(folly CONFIG)"
include(CMakePackageConfigHelpers)
configure_package_config_file(
CMake/folly-config.cmake.in
folly-config.cmake
INSTALL_DESTINATION ${CMAKE_INSTALL_DIR}
PATH_VARS
INCLUDE_INSTALL_DIR
CMAKE_INSTALL_DIR
)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/folly-config.cmake
DESTINATION ${CMAKE_INSTALL_DIR}
COMPONENT dev
)
install(
EXPORT folly
DESTINATION ${CMAKE_INSTALL_DIR}
NAMESPACE Folly::
FILE folly-targets.cmake
COMPONENT dev
)
# Generate a pkg-config file so that downstream projects that don't use
# CMake can depend on folly using pkg-config.
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/CMake/libfolly.pc.in
${CMAKE_CURRENT_BINARY_DIR}/libfolly.pc.gen
@ONLY
)
# Specify target to allow resolving generator expressions requiring
# a target for CMake >=3.19. See #1414.
# VERSION_GREATER_EQUAL isn't available before CMake 3.7.
if(NOT CMAKE_VERSION VERSION_LESS 3.19)
set(target_arg TARGET folly_deps)
endif()
file(
GENERATE
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/libfolly.pc
INPUT ${CMAKE_CURRENT_BINARY_DIR}/libfolly.pc.gen
${target_arg}
)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/libfolly.pc
DESTINATION ${LIB_INSTALL_DIR}/pkgconfig
COMPONENT dev
)
option(BUILD_TESTS "If enabled, compile the tests." OFF)
option(BUILD_BENCHMARKS "If enabled, compile the benchmarks." OFF)
option(BUILD_BROKEN_TESTS "If enabled, compile tests that are known to be broken." OFF)
option(BUILD_HANGING_TESTS "If enabled, compile tests that are known to hang." OFF)
option(BUILD_SLOW_TESTS "If enabled, compile tests that take a while to run in debug mode." OFF)
if (BUILD_TESTS OR BUILD_BENCHMARKS)
option(USE_CMAKE_GOOGLE_TEST_INTEGRATION "If enabled, use the google test integration included in CMake." ON)
find_package(GMock MODULE REQUIRED)
find_package(GTest MODULE REQUIRED)
if (USE_CMAKE_GOOGLE_TEST_INTEGRATION)
include(GoogleTest OPTIONAL RESULT_VARIABLE HAVE_CMAKE_GTEST)
enable_testing()
else()
set(HAVE_CMAKE_GTEST OFF)
endif()
# The ThreadLocalTest code uses a helper shared library for one of its tests.
# This can only be built if folly itself was built as a shared library.
if (BUILD_SHARED_LIBS)
add_library(thread_local_test_lib MODULE
${FOLLY_DIR}/test/ThreadLocalTestLib.cpp
)
set_target_properties(thread_local_test_lib PROPERTIES PREFIX "")
apply_folly_compile_options_to_target(thread_local_test_lib)
target_link_libraries(thread_local_test_lib PUBLIC folly)
target_include_directories(
thread_local_test_lib
PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
endif()
add_library(folly_test_support
${FOLLY_DIR}/test/common/TestMain.cpp
${FOLLY_DIR}/test/FBVectorTestUtil.cpp
${FOLLY_DIR}/test/DeterministicSchedule.cpp
${FOLLY_DIR}/test/DeterministicSchedule.h
${FOLLY_DIR}/test/SingletonTestStructs.cpp
${FOLLY_DIR}/test/SocketAddressTestHelper.cpp
${FOLLY_DIR}/test/SocketAddressTestHelper.h
${FOLLY_DIR}/compression/test/CodingTestUtils.cpp
${FOLLY_DIR}/container/test/F14TestUtil.h
${FOLLY_DIR}/container/test/TrackingTypes.h
${FOLLY_DIR}/futures/test/TestExecutor.cpp
${FOLLY_DIR}/futures/test/TestExecutor.h
${FOLLY_DIR}/io/async/test/BlockingSocket.h
${FOLLY_DIR}/io/async/test/CallbackStateEnum.h
${FOLLY_DIR}/io/async/test/ConnCallback.h
${FOLLY_DIR}/io/async/test/MockAsyncServerSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncSSLSocket.h
${FOLLY_DIR}/io/async/test/MockAsyncTransport.h
${FOLLY_DIR}/io/async/test/MockAsyncUDPSocket.h
${FOLLY_DIR}/io/async/test/MockTimeoutManager.h
${FOLLY_DIR}/io/async/test/ScopedBoundPort.cpp
${FOLLY_DIR}/io/async/test/ScopedBoundPort.h
${FOLLY_DIR}/io/async/test/SocketPair.cpp
${FOLLY_DIR}/io/async/test/SocketPair.h
${FOLLY_DIR}/io/async/test/SSLUtil.cpp
${FOLLY_DIR}/io/async/test/SSLUtil.h
${FOLLY_DIR}/io/async/test/TFOUtil.cpp
${FOLLY_DIR}/io/async/test/TFOUtil.h
${FOLLY_DIR}/io/async/test/TestSSLServer.cpp
${FOLLY_DIR}/io/async/test/TestSSLServer.h
${FOLLY_DIR}/io/async/test/TimeUtil.cpp
${FOLLY_DIR}/io/async/test/TimeUtil.h
${FOLLY_DIR}/io/async/test/UndelayedDestruction.h
${FOLLY_DIR}/io/async/test/Util.h
${FOLLY_DIR}/logging/test/ConfigHelpers.cpp
${FOLLY_DIR}/logging/test/ConfigHelpers.h
${FOLLY_DIR}/logging/test/TestLogHandler.cpp
${FOLLY_DIR}/logging/test/TestLogHandler.h
)
target_compile_definitions(folly_test_support
PUBLIC
${LIBGMOCK_DEFINES}
)
target_include_directories(folly_test_support
SYSTEM
PUBLIC
${LIBGMOCK_INCLUDE_DIR}
${GTEST_INCLUDE_DIRS}
)
target_link_libraries(folly_test_support
PUBLIC
${BOOST_LIBRARIES}
follybenchmark
folly
${LIBGMOCK_LIBRARIES}
${GLOG_LIBRARY}
)
apply_folly_compile_options_to_target(folly_test_support)
folly_define_tests(
DIRECTORY algorithm/simd/detail/test/
TEST algorithm_simd_detail_simd_any_of_test SOURCES SimdAnyOfTest.cpp
TEST algorithm_simd_detail_simd_for_each_test SOURCES SimdForEachTest.cpp
TEST algorithm_simd_detail_simd_traits_test SOURCES TraitsTest.cpp
TEST algorithm_simd_detail_unroll_utils_test SOURCES UnrollUtilsTest.cpp
DIRECTORY algorithm/simd/test/
TEST algorithm_simd_contains_test SOURCES ContainsTest.cpp
TEST algorithm_simd_find_fixed_test SOURCES FindFixedTest.cpp
TEST algorithm_simd_movemask_test SOURCES MovemaskTest.cpp
DIRECTORY chrono/test/
TEST chrono_conv_test WINDOWS_DISABLED
SOURCES ConvTest.cpp
DIRECTORY compression/test/
TEST compression_compression_test SLOW SOURCES CompressionTest.cpp
TEST compression_quotient_multiset_test SOURCES QuotientMultiSetTest.cpp
TEST compression_select64_test SOURCES Select64Test.cpp
DIRECTORY compression/elias_fano/test/
TEST compression_alias_fano_bit_vector_coding_test
SOURCES BitVectorCodingTest.cpp
TEST compression_alias_fano_elias_fano_test
SOURCES EliasFanoCodingTest.cpp
DIRECTORY container/test/
TEST container_access_test SOURCES AccessTest.cpp
TEST container_array_test SOURCES ArrayTest.cpp
BENCHMARK container_bit_iterator_bench SOURCES BitIteratorBench.cpp
TEST container_bit_iterator_test SOURCES BitIteratorTest.cpp
TEST container_enumerate_test SOURCES EnumerateTest.cpp
BENCHMARK container_evicting_cache_map_bench
SOURCES EvictingCacheMapBench.cpp
TEST container_evicting_cache_map_test SOURCES EvictingCacheMapTest.cpp
TEST container_f14_fwd_test SOURCES F14FwdTest.cpp
TEST container_f14_map_test SOURCES F14MapTest.cpp
TEST container_f14_set_test SOURCES F14SetTest.cpp
BENCHMARK container_fbvector_benchmark
SOURCES FBVectorBenchmark.cpp
HEADERS FBVectorBenchmarks.cpp.h
TEST container_fbvector_test SOURCES FBVectorTest.cpp
BENCHMARK container_foreach_benchmark SOURCES ForeachBenchmark.cpp
TEST container_foreach_test SOURCES ForeachTest.cpp
TEST container_heap_vector_types_test SOURCES heap_vector_types_test.cpp
TEST container_map_util_test WINDOWS_DISABLED SOURCES MapUtilTest.cpp
TEST container_merge_test SOURCES MergeTest.cpp
TEST container_regex_match_cache_test SOURCES RegexMatchCacheTest.cpp
TEST container_small_vector_test WINDOWS_DISABLED
SOURCES small_vector_test.cpp
TEST container_sorted_vector_types_test SOURCES sorted_vector_test.cpp
TEST container_span_test SOURCES span_test.cpp
BENCHMARK container_sparse_byte_set_benchmark
SOURCES SparseByteSetBenchmark.cpp
TEST container_sparse_byte_set_test SOURCES SparseByteSetTest.cpp
TEST container_util_test SOURCES UtilTest.cpp
DIRECTORY concurrency/container/test/
TEST concurrency_container_lock_free_ring_buffer_test
SOURCES LockFreeRingBufferTest.cpp
DIRECTORY concurrency/test/
TEST concurrency_atomic_shared_ptr_test SOURCES AtomicSharedPtrTest.cpp
TEST concurrency_cache_locality_test WINDOWS_DISABLED
SOURCES CacheLocalityTest.cpp
TEST concurrency_core_cached_shared_ptr_test
SOURCES CoreCachedSharedPtrTest.cpp
BENCHMARK concurrency_concurrent_hash_map_bench WINDOWS_DISABLED
SOURCES ConcurrentHashMapBench.cpp
TEST concurrency_concurrent_hash_map_test WINDOWS_DISABLED
SOURCES ConcurrentHashMapTest.cpp
TEST concurrency_dynamic_bounded_queue_test WINDOWS_DISABLED
SOURCES DynamicBoundedQueueTest.cpp
TEST concurrency_priority_unbounded_queue_set_test
SOURCES PriorityUnboundedQueueSetTest.cpp
BENCHMARK concurrency_thread_cached_synchronized_bench
SOURCES ThreadCachedSynchronizedBench.cpp
TEST concurrency_thread_cached_synchronized_test
SOURCES ThreadCachedSynchronizedTest.cpp
TEST concurrency_unbounded_queue_test SOURCES UnboundedQueueTest.cpp
DIRECTORY detail/test/
TEST detail_simple_simd_string_utils_test
SOURCES SimpleSimdStringUtilsTest.cpp
TEST detail_split_string_simd_test WINDOWS_DISABLED
SOURCES SplitStringSimdTest.cpp
TEST detail_static_singleton_manager_test
SOURCES StaticSingletonManagerTest.cpp
TEST detail_type_list_test SOURCES TypeListTest.cpp
DIRECTORY detail/base64_detail/tests/
TEST detail_base64_detail_test WINDOWS_DISABLED
SOURCES
Base64AgainstScalarTest.cpp
Base64PlatformTest.cpp
Base64SpecialCasesTest.cpp
DIRECTORY executors/test/
TEST executors_async_helpers_test SOURCES AsyncTest.cpp
TEST executors_codel_test WINDOWS_DISABLED SOURCES CodelTest.cpp
BENCHMARK executors_edf_thread_pool_executor_benchmark
SOURCES EDFThreadPoolExecutorBenchmark.cpp
TEST executors_executor_test SOURCES ExecutorTest.cpp
TEST executors_fiber_io_executor_test SOURCES FiberIOExecutorTest.cpp
# FunctionSchedulerTest has a lot of timing-dependent checks,
# and tends to fail on heavily loaded systems.
TEST executors_function_scheduler_test BROKEN
SOURCES FunctionSchedulerTest.cpp
TEST executors_global_executor_test SOURCES GlobalExecutorTest.cpp
TEST executors_serial_executor_test SOURCES SerialExecutorTest.cpp
# Fails in ThreadPoolExecutorTest.RequestContext:719 data2 != nullptr
TEST executors_thread_pool_executor_test BROKEN WINDOWS_DISABLED
SOURCES ThreadPoolExecutorTest.cpp
TEST executors_threaded_executor_test SOURCES ThreadedExecutorTest.cpp
TEST executors_timed_drivable_executor_test
SOURCES TimedDrivableExecutorTest.cpp
DIRECTORY executors/task_queue/test/
TEST executors_task_queue_priority_unbounded_blocking_queue_test
SOURCES PriorityUnboundedBlockingQueueTest.cpp
BENCHMARK executors_task_queue_unbounded_blocking_queue_bench
SOURCES UnboundedBlockingQueueBench.cpp
TEST executors_task_queue_unbounded_blocking_queue_test
SOURCES UnboundedBlockingQueueTest.cpp
#DIRECTORY experimental/test/
#TEST nested_command_line_app_test SOURCES NestedCommandLineAppTest.cpp
#TEST program_options_test SOURCES ProgramOptionsTest.cpp
# Depends on liburcu
#TEST read_mostly_shared_ptr_test SOURCES ReadMostlySharedPtrTest.cpp
#TEST ref_count_test SOURCES RefCountTest.cpp
#DIRECTORY experimental/io/test/
DIRECTORY external/farmhash/test/
TEST external_farmhash_farmhash_test SOURCES farmhash_test.cpp
DIRECTORY logging/test/
TEST logging_async_file_writer_test WINDOWS_DISABLED
SOURCES AsyncFileWriterTest.cpp
TEST logging_autotimer_test SOURCES AutoTimerTest.cpp
TEST logging_config_parser_test SOURCES ConfigParserTest.cpp
TEST logging_config_update_test SOURCES ConfigUpdateTest.cpp
TEST logging_file_handler_factory_test WINDOWS_DISABLED
SOURCES FileHandlerFactoryTest.cpp
TEST logging_glog_formatter_test SOURCES GlogFormatterTest.cpp
TEST logging_immediate_file_writer_test
SOURCES ImmediateFileWriterTest.cpp
TEST logging_log_category_test SOURCES LogCategoryTest.cpp
TEST logging_logger_db_test SOURCES LoggerDBTest.cpp
TEST logging_logger_test WINDOWS_DISABLED SOURCES LoggerTest.cpp
TEST logging_log_level_test SOURCES LogLevelTest.cpp
TEST logging_log_message_test SOURCES LogMessageTest.cpp
TEST logging_log_name_test SOURCES LogNameTest.cpp
TEST logging_log_stream_test SOURCES LogStreamTest.cpp
TEST logging_rate_limiter_test SOURCES RateLimiterTest.cpp
TEST logging_standard_log_handler_test SOURCES StandardLogHandlerTest.cpp
TEST logging_xlog_test WINDOWS_DISABLED
HEADERS
XlogHeader1.h
XlogHeader2.h
SOURCES
XlogFile1.cpp
XlogFile2.cpp
XlogTest.cpp
DIRECTORY fibers/test/
# FiberManager swapWithException fails with segfault
BENCHMARK fibers_fibers_benchmark WINDOWS_DISABLED
SOURCES FibersBenchmark.cpp
TEST fibers_fibers_test BROKEN SOURCES FibersTest.cpp
DIRECTORY functional/test/
TEST functional_apply_tuple_test WINDOWS_DISABLED
SOURCES ApplyTupleTest.cpp
TEST functional_invoke_test WINDOWS_DISABLED
SOURCES InvokeTest.cpp
TEST functional_partial_test SOURCES PartialTest.cpp
TEST functional_protocol_test SOURCES protocol_test.cpp
TEST functional_traits_test SOURCES traits_test.cpp
DIRECTORY futures/test/
TEST futures_barrier_test SOURCES BarrierTest.cpp
TEST futures_callback_lifetime_test SOURCES CallbackLifetimeTest.cpp
TEST futures_collect_test SOURCES CollectTest.cpp
TEST futures_context_test SOURCES ContextTest.cpp
TEST futures_core_test SOURCES CoreTest.cpp
TEST futures_ensure_test SOURCES EnsureTest.cpp
TEST futures_filter_test SOURCES FilterTest.cpp
TEST futures_future_splitter_test SOURCES FutureSplitterTest.cpp
BENCHMARK futures_benchmark WINDOWS_DISABLED
SOURCES Benchmark.cpp
TEST futures_future_test WINDOWS_DISABLED
SOURCES FutureTest.cpp
TEST futures_header_compile_test SOURCES HeaderCompileTest.cpp
TEST futures_interrupt_test SOURCES InterruptTest.cpp
TEST futures_map_test SOURCES MapTest.cpp
TEST futures_non_copyable_lambda_test SOURCES NonCopyableLambdaTest.cpp
TEST futures_poll_test SOURCES PollTest.cpp
TEST futures_promise_test SOURCES PromiseTest.cpp
TEST futures_reduce_test SOURCES ReduceTest.cpp
TEST futures_retrying_test SOURCES RetryingTest.cpp
TEST futures_self_destruct_test SOURCES SelfDestructTest.cpp
TEST futures_shared_promise_test SOURCES SharedPromiseTest.cpp
TEST futures_test_executor_test SOURCES TestExecutorTest.cpp
TEST futures_then_compile_test
HEADERS
ThenCompileTest.h
SOURCES
ThenCompileTest.cpp
TEST futures_then_test SOURCES ThenTest.cpp
TEST futures_timekeeper_test WINDOWS_DISABLED SOURCES TimekeeperTest.cpp
TEST futures_times_test SOURCES TimesTest.cpp
TEST futures_unwrap_test SOURCES UnwrapTest.cpp
TEST futures_via_test SOURCES ViaTest.cpp
TEST futures_wait_test SOURCES WaitTest.cpp
TEST futures_when_test SOURCES WhenTest.cpp
TEST futures_while_do_test SOURCES WhileDoTest.cpp
TEST futures_will_equal_test SOURCES WillEqualTest.cpp
TEST futures_window_test WINDOWS_DISABLED
SOURCES WindowTest.cpp
DIRECTORY gen/test/
# MSVC bug can't resolve initializer_list constructor properly
TEST gen_base_test WINDOWS_DISABLED SOURCES BaseTest.cpp
TEST gen_combine_test SOURCES CombineTest.cpp
BENCHMARK gen_parallel_map_benchmark SOURCES ParallelMapBenchmark.cpp
TEST gen_parallel_map_test SOURCES ParallelMapTest.cpp
BENCHMARK gen_parallel_benchmark SOURCES ParallelBenchmark.cpp
TEST gen_parallel_test SOURCES ParallelTest.cpp
DIRECTORY hash/test/
BENCHMARK hash_checksum_benchmark SOURCES ChecksumBenchmark.cpp
# builds, but tests fail on MSVC cmake build
TEST hash_checksum_test WINDOWS_DISABLED
SOURCES ChecksumTest.cpp
TEST hash_farm_hash_test SOURCES FarmHashTest.cpp
BENCHMARK hash_hash_benchmark WINDOWS_DISABLED
SOURCES HashBenchmark.cpp
TEST hash_hash_test WINDOWS_DISABLED
SOURCES HashTest.cpp
TEST hash_spooky_hash_v1_test SOURCES SpookyHashV1Test.cpp
TEST hash_spooky_hash_v2_test SOURCES SpookyHashV2Test.cpp
TEST hash_traits_test SOURCES traits_test.cpp
DIRECTORY io/test/
TEST io_fs_util_test SOURCES FsUtilTest.cpp
TEST io_iobuf_test WINDOWS_DISABLED SOURCES IOBufTest.cpp
TEST io_iobuf_cursor_test SOURCES IOBufCursorTest.cpp
TEST io_iobuf_queue_test SOURCES IOBufQueueTest.cpp
TEST io_record_io_test WINDOWS_DISABLED SOURCES RecordIOTest.cpp
TEST io_shutdown_socket_set_test HANGING
SOURCES ShutdownSocketSetTest.cpp
TEST io_socket_option_value_test HANGING
SOURCES SocketOptionValueTest.cpp
DIRECTORY io/async/test/
# A number of tests in the async_test binary are unfortunately flaky.
# When run under Travis CI a number of the tests also hang (it looks
# like they do not get expected socket accept events, causing them
# to never break out of their event loops).
TEST io_async_async_test BROKEN
CONTENT_DIR certs/
HEADERS
AsyncSocketTest.h
AsyncSSLSocketTest.h
SOURCES
AsyncPipeTest.cpp
AsyncSocketExceptionTest.cpp
AsyncSocketTest.cpp
AsyncSocketTest2.cpp
AsyncSSLSocketTest.cpp
AsyncSSLSocketTest2.cpp
AsyncSSLSocketWriteTest.cpp
AsyncTransportTest.cpp
# This is disabled because it depends on things that don't exist
# on Windows.
# TODO: Refactor EventHandlerTest to not use eventfd so it can work on Mac OS X.
#TEST io_async_event_handler_test WINDOWS_DISABLED SOURCES EventHandlerTest.cpp
TEST io_async_async_timeout_test SOURCES AsyncTimeoutTest.cpp
TEST io_async_async_udp_socket_test APPLE_DISABLED WINDOWS_DISABLED
SOURCES AsyncUDPSocketTest.cpp
TEST io_async_delayed_destruction_test SOURCES DelayedDestructionTest.cpp
TEST io_async_delayed_destruction_base_test
SOURCES DelayedDestructionBaseTest.cpp
TEST io_async_destructor_check_test SOURCES DestructorCheckTest.cpp
# Fails with gtest macro error
TEST io_async_event_base_test BROKEN SOURCES EventBaseTest.cpp
TEST io_async_event_base_local_test WINDOWS_DISABLED
SOURCES EventBaseLocalTest.cpp
TEST io_async_hh_wheel_timer_test SOURCES HHWheelTimerTest.cpp
TEST io_async_hh_wheel_timer_slow_tests SLOW
SOURCES HHWheelTimerSlowTests.cpp
TEST io_async_notification_queue_test WINDOWS_DISABLED
SOURCES NotificationQueueTest.cpp
BENCHMARK io_async_request_context_benchmark WINDOWS_DISABLED
SOURCES RequestContextBenchmark.cpp
HEADERS RequestContextHelper.h
TEST io_async_request_context_test WINDOWS_DISABLED
SOURCES RequestContextTest.cpp
TEST io_async_scoped_event_base_thread_test WINDOWS_DISABLED
SOURCES ScopedEventBaseThreadTest.cpp
TEST io_async_ssl_session_test
CONTENT_DIR certs/
SOURCES SSLSessionTest.cpp
TEST io_async_write_chain_async_transport_wrapper_test
SOURCES WriteChainAsyncTransportWrapperTest.cpp
DIRECTORY io/async/ssl/test/
TEST io_async_ssl_ssl_errors_test SOURCES SSLErrorsTest.cpp
DIRECTORY lang/test/
TEST lang_align_test SOURCES AlignTest.cpp
TEST lang_aligned_test SOURCES AlignedTest.cpp
TEST lang_badge_test SOURCES BadgeTest.cpp
TEST lang_bits_class_test SOURCES BitsClassTest.cpp
TEST lang_bits_test SOURCES BitsTest.cpp
TEST lang_c_string_test SOURCES CStringTest.cpp
TEST lang_cast_test SOURCES CastTest.cpp
TEST lang_checked_math_test SOURCES CheckedMathTest.cpp
TEST lang_exception_test SOURCES ExceptionTest.cpp
TEST lang_extern_test SOURCES ExternTest.cpp
TEST lang_ordering_test SOURCES OrderingTest.cpp
TEST lang_pretty_test SOURCES PrettyTest.cpp
TEST lang_propagate_const_test SOURCES PropagateConstTest.cpp
TEST lang_r_value_reference_wrapper_test WINDOWS_DISABLED
SOURCES RValueReferenceWrapperTest.cpp
TEST lang_safe_assert_test SOURCES SafeAssertTest.cpp
BENCHMARK lang_to_ascii_benchmark SOURCES ToAsciiBench.cpp
TEST lang_to_ascii_test SOURCES ToAsciiTest.cpp
TEST lang_type_info_test SOURCES TypeInfoTest.cpp
DIRECTORY memory/test/
TEST memory_arena_test WINDOWS_DISABLED SOURCES ArenaTest.cpp
TEST memory_reentrant_allocator_test WINDOWS_DISABLED
SOURCES ReentrantAllocatorTest.cpp
TEST memory_thread_cached_arena_test WINDOWS_DISABLED
SOURCES ThreadCachedArenaTest.cpp
TEST memory_mallctl_helper_test SOURCES MallctlHelperTest.cpp
TEST memory_uninitialized_memory_hacks_test
SOURCES UninitializedMemoryHacksTest.cpp
DIRECTORY net/detail/test/
TEST net_detail_socket_file_descriptor_map_test
SOURCES SocketFileDescriptorMapTest.cpp
DIRECTORY portability/test/
TEST portability_constexpr_test SOURCES ConstexprTest.cpp
TEST portability_filesystem_test SOURCES FilesystemTest.cpp