sapphire/tools/format.sh
2022-08-03 14:55:04 +00:00

10 lines
132 B
Bash
Executable File

#!/usr/bin/env sh
if [ ! -d build ]
then
mkdir build
cmake -S . -B build
fi
cd build
cmake --build . --target clang-format