13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -f CMakeLists.txt ]; then
|
|
mkdir -p build
|
|
cd build
|
|
fi
|
|
|
|
if ! [ -f CMakeCache.txt ]; then
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DUNITY_BUILDS=OFF -DWHOLE_PROGRAM_OPTIMISATION=OFF ..
|
|
fi
|
|
|
|
make -j$(nproc)
|