llvm-for-llvmta/tools/clang/unittests/DirectoryWatcher/CMakeLists.txt

19 lines
310 B
CMake
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
if(APPLE OR CMAKE_SYSTEM_NAME MATCHES "Linux")
set(LLVM_LINK_COMPONENTS
Support
)
add_clang_unittest(DirectoryWatcherTests
DirectoryWatcherTest.cpp
)
target_link_libraries(DirectoryWatcherTests
PRIVATE
LLVMTestingSupport
clangDirectoryWatcher
clangBasic
)
endif()