mapnik/cmake/clang-format.cmake
Mathis Logemann f48589738f precommit
2022-08-17 17:19:59 +02:00

16 lines
321 B
CMake

function(format_dir dir)
file(GLOB_RECURSE sources
"${dir}/*.cpp"
"${dir}/*.hpp"
)
execute_process(COMMAND clang-format -style=file -i ${sources})
endfunction()
format_dir(benchmark)
format_dir(demo)
format_dir(include)
format_dir(plugins)
format_dir(src)
format_dir(test)
format_dir(utils)