forked from OSchip/llvm-project
23 lines
422 B
CMake
23 lines
422 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
support
|
|
)
|
|
|
|
get_filename_component(CLANGD_SOURCE_DIR
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../clangd REALPATH)
|
|
include_directories(
|
|
${CLANGD_SOURCE_DIR}
|
|
)
|
|
|
|
add_custom_target(ClangdXpcUnitTests)
|
|
add_unittest(ClangdXpcUnitTests ClangdXpcTests
|
|
ConversionTests.cpp
|
|
)
|
|
|
|
target_link_libraries(ClangdXpcTests
|
|
PRIVATE
|
|
clangdXpcJsonConversions
|
|
clangDaemon
|
|
LLVMSupport
|
|
LLVMTestingSupport
|
|
)
|