repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Clang] prevent errors for deduction guides using deduced type aliases (#117450)
[llvm-project.git]
/
clang
/
unittests
/
DirectoryWatcher
/
CMakeLists.txt
blob
38882c9ec216259f2064fd999690b80629c0a222
1
if(APPLE OR CMAKE_SYSTEM_NAME MATCHES "Linux" OR CMAKE_SYSTEM_NAME STREQUAL Windows)
2
3
set(LLVM_LINK_COMPONENTS
4
Support
5
)
6
7
add_clang_unittest(DirectoryWatcherTests
8
DirectoryWatcherTest.cpp
9
)
10
11
target_link_libraries(DirectoryWatcherTests
12
PRIVATE
13
LLVMTestingSupport
14
clangDirectoryWatcher
15
)
16
17
endif()