29 lines
620 B
Text
29 lines
620 B
Text
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
||
|
|
||
|
add_clang_tool(clang-include-fixer
|
||
|
ClangIncludeFixer.cpp
|
||
|
)
|
||
|
|
||
|
clang_target_link_libraries(clang-include-fixer
|
||
|
PRIVATE
|
||
|
clangBasic
|
||
|
clangFormat
|
||
|
clangFrontend
|
||
|
clangRewrite
|
||
|
clangSerialization
|
||
|
clangTooling
|
||
|
clangToolingCore
|
||
|
)
|
||
|
target_link_libraries(clang-include-fixer
|
||
|
PRIVATE
|
||
|
clangIncludeFixer
|
||
|
findAllSymbols
|
||
|
)
|
||
|
|
||
|
install(FILES clang-include-fixer.el
|
||
|
DESTINATION "${CMAKE_INSTALL_DATADIR}/clang"
|
||
|
COMPONENT clang-include-fixer)
|
||
|
install(FILES clang-include-fixer.py
|
||
|
DESTINATION "${CMAKE_INSTALL_DATADIR}/clang"
|
||
|
COMPONENT clang-include-fixer)
|