fixmydownloads/build.sh

8 lines
91 B
Bash
Executable File

#!/bin/sh
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make -j$(nproc)
cd ..