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.
25 lines
370 B
25 lines
370 B
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../)
|
|
|
|
set(LLVM_LINK_COMPONENTS
|
|
Support
|
|
)
|
|
|
|
add_clang_executable(clangd-indexer
|
|
IndexerMain.cpp
|
|
)
|
|
|
|
clang_target_link_libraries(clangd-indexer
|
|
PRIVATE
|
|
clangAST
|
|
clangBasic
|
|
clangFrontend
|
|
clangIndex
|
|
clangLex
|
|
clangTooling
|
|
)
|
|
target_link_libraries(clangd-indexer
|
|
PRIVATE
|
|
clangDaemon
|
|
clangdSupport
|
|
)
|