If a add_clang_library call doesn't specify building as static or shared
library they are implicitly added to the list static libraries that is
linked in to clang-cpp shared library here.
315ba77406/clang/cmake/modules/AddClang.cmake (L107)
Because the clang-tools-extra libraries targets were declared after
clang-cpp they by luck never got linked to clang-cpp.
This change is required for clang symbol visibility macros on windows to
work correctly for clang tools since we need to distinguish if a target
being built will be importing or exporting clang symbols from the
clang-cpp DLL.
14 lines
393 B
CMake
14 lines
393 B
CMake
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../../../)
|
|
# When compiled without Remote Index support, the real implementation index
|
|
# client is not present. Users will get a notification about this when trying
|
|
# to connect to remote index server instance.
|
|
add_clang_library(clangdRemoteIndex STATIC
|
|
UnimplementedClient.cpp
|
|
|
|
LINK_LIBS
|
|
clangdSupport
|
|
|
|
DEPENDS
|
|
ClangDriverOptions
|
|
)
|