sapphire/cmake/clang-dev-tools.cmake

9 lines
191 B
CMake
Raw Permalink Normal View History

2022-07-19 12:18:53 +00:00
file(GLOB ALL_SOURCE_FILES src/*.cpp src/*.h src/AST/*.cpp src/AST/*.h)
add_custom_target(
clang-format
COMMAND /usr/bin/clang-format
-style=file
-i
${ALL_SOURCE_FILES}
)