9 lines
191 B
CMake
9 lines
191 B
CMake
|
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}
|
||
|
)
|