31 lines
531 B
CMake
31 lines
531 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_custom_target(ClangPseudoUnitTests)
|
|
add_unittest(ClangPseudoUnitTests ClangPseudoTests
|
|
BracketTest.cpp
|
|
CXXTest.cpp
|
|
DirectiveTreeTest.cpp
|
|
DisambiguateTest.cpp
|
|
ForestTest.cpp
|
|
GLRTest.cpp
|
|
GrammarTest.cpp
|
|
LRTableTest.cpp
|
|
TokenTest.cpp
|
|
)
|
|
|
|
clang_target_link_libraries(ClangPseudoTests
|
|
PRIVATE
|
|
clangBasic
|
|
clangLex
|
|
)
|
|
|
|
target_link_libraries(ClangPseudoTests
|
|
PRIVATE
|
|
clangPseudo
|
|
clangPseudoCXX
|
|
clangPseudoGrammar
|
|
LLVMTestingAnnotations
|
|
LLVMTestingSupport
|
|
)
|