llvm-project/clang-tools-extra/clang-format/CMakeLists.txt

14 lines
261 B
CMake
Raw Normal View History

set(LLVM_LINK_COMPONENTS support)
set(LLVM_USED_LIBS clangFormat clangTooling clangBasic clangAST)
add_clang_executable(clang-format
ClangFormat.cpp
)
target_link_libraries(clang-format
clangFormat
clangTooling
clangBasic
clangRewriteFrontend
)