5 lines
98 B
Bash
Executable file
5 lines
98 B
Bash
Executable file
#!/bin/bash
|
|
if [ ! -d "build" ]; then
|
|
mkdir "build"
|
|
fi
|
|
cmake --preset=hane . && make -C build
|