[clang] Handle __declspec() attributes in using
[llvm-project.git] / compiler-rt / lib / tsan / tests / rtl / CMakeLists.txt
blob92cec3ee41bd44af61d665f70dab3a93bc3410c7
1 set(TSAN_RTL_TEST_SOURCES
2   tsan_bench.cpp
3   tsan_mop.cpp
4   tsan_mutex.cpp
5   tsan_posix.cpp
6   tsan_string.cpp
7   tsan_test.cpp
8   tsan_thread.cpp
9   )
11 if(UNIX)
12   list(APPEND TSAN_RTL_TEST_SOURCES
13     tsan_test_util_posix.cpp
14     )
15 endif()
17 set(TSAN_RTL_TEST_HEADERS
18   tsan_test_util.h
19   )
21 add_tsan_unittest(TsanRtlTest
22   SOURCES ${TSAN_RTL_TEST_SOURCES}
23   HEADERS ${TSAN_RTL_TEST_HEADERS})