1 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/../..)
3 set(LLVM_LINK_COMPONENTS
7 # A target containing all code tweaks (i.e. mini-refactorings) provided by
9 # Built as an object library to make sure the linker does not remove global
10 # constructors that register individual tweaks in a global registry.
11 # To enable these tweaks in executables or shared libraries, add
12 # $<TARGET_OBJECTS:obj.clangDaemonTweaks> to a list of sources, see
13 # clangd/tool/CMakeLists.txt for an example.
14 add_clang_library(clangDaemonTweaks OBJECT
16 AnnotateHighlightings.cpp
24 MemberwiseConstructor.cpp
25 ObjCLocalizeStringLiteral.cpp
26 ObjCMemberwiseInitializer.cpp
29 RemoveUsingNamespace.cpp
42 clangToolingRefactoring