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