19 lines
288 B
CMake
19 lines
288 B
CMake
|
set(LLVM_LINK_COMPONENTS
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
add_clang_unittest(BasicTests
|
||
|
CharInfoTest.cpp
|
||
|
DiagnosticTest.cpp
|
||
|
FileManagerTest.cpp
|
||
|
MemoryBufferCacheTest.cpp
|
||
|
SourceManagerTest.cpp
|
||
|
VirtualFileSystemTest.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(BasicTests
|
||
|
PRIVATE
|
||
|
clangBasic
|
||
|
clangLex
|
||
|
)
|