9 lines
114 B
Bash
Executable File
9 lines
114 B
Bash
Executable File
if [ ! -d build ]
|
|
then
|
|
mkdir build
|
|
cmake -S . -B build
|
|
fi
|
|
|
|
cd build
|
|
|
|
cmake --build . --target clang-format |