6fe46f61e2
fix clang-format fix clang-format adjust pointer and reference aligment add cmake script to format all files run with: cmake -P cmake/clang-format.cmake fix sort includes change format cmake script
16 lines
322 B
CMake
16 lines
322 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)
|