fixmydownloads/build.sh

8 lines
88 B
Bash
Executable File

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