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.
31 lines
462 B
31 lines
462 B
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
FrontendOpenMP
|
|
)
|
|
|
|
add_clang_library(findAllSymbols
|
|
FindAllSymbols.cpp
|
|
FindAllSymbolsAction.cpp
|
|
FindAllMacros.cpp
|
|
HeaderMapCollector.cpp
|
|
PathConfig.cpp
|
|
PragmaCommentHandler.cpp
|
|
STLPostfixHeaderMap.cpp
|
|
SymbolInfo.cpp
|
|
|
|
DEPENDS
|
|
omp_gen
|
|
)
|
|
|
|
clang_target_link_libraries(findAllSymbols
|
|
PRIVATE
|
|
clangAST
|
|
clangASTMatchers
|
|
clangBasic
|
|
clangFrontend
|
|
clangLex
|
|
clangTooling
|
|
)
|
|
|
|
add_subdirectory(tool)
|