You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
427 B
29 lines
427 B
4 months ago
|
set(LLVM_LINK_COMPONENTS
|
||
|
FrontendOpenMP
|
||
|
Support
|
||
|
)
|
||
|
|
||
|
add_clang_unittest(SemaTests
|
||
|
ExternalSemaSourceTest.cpp
|
||
|
CodeCompleteTest.cpp
|
||
|
GslOwnerPointerInference.cpp
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(SemaTests
|
||
|
PRIVATE
|
||
|
clangAST
|
||
|
clangASTMatchers
|
||
|
clangBasic
|
||
|
clangFrontend
|
||
|
clangParse
|
||
|
clangSema
|
||
|
clangSerialization
|
||
|
clangTesting
|
||
|
clangTooling
|
||
|
)
|
||
|
|
||
|
target_link_libraries(SemaTests
|
||
|
PRIVATE
|
||
|
LLVMTestingSupport
|
||
|
)
|