Skip to content
Snippets Groups Projects
Commit 0ee245fd authored by weirdwizardthomas's avatar weirdwizardthomas
Browse files

Added a build script

parent 02cc0bf6
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# Exit on first error
set -e
# Create dir build
mkdir -p build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
# Build
cmake --build .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment