blob: f43f132304c951c21d51e6cb51c34d258311b6bf [file] [log] [blame]
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../..)
set(LLVM_LINK_COMPONENTS
support
)
# A target containing all code tweaks (i.e. mini-refactorings) provided by
# clangd.
# Built as an object library to make sure the linker does not remove global
# constructors that register individual tweaks in a global registry.
# To enable these tweaks in executables or shared libraries, add
# $<TARGET_OBJECTS:obj.clangDaemonTweaks> to a list of sources, see
# clangd/tool/CMakeLists.txt for an example.
add_clang_library(clangDaemonTweaks OBJECT
AnnotateHighlightings.cpp
DumpAST.cpp
ExpandAutoType.cpp
ExpandMacro.cpp
ExtractFunction.cpp
ExtractVariable.cpp
RawStringLiteral.cpp
RemoveUsingNamespace.cpp
SwapIfBranches.cpp
LINK_LIBS
clangAST
clangBasic
clangDaemon
clangLex
clangToolingCore
clangToolingRefactoring
clangToolingSyntax
)