Skip to content

Instantly share code, notes, and snippets.

@velitasali
velitasali / build_trebleshot.sh
Last active January 31, 2019 20:11
This is a shell script which will build TrebleShot in debug mode and start it. Prerequisites will not be checked, so make sure Qt 5.9.5+ and CMake 3.8.2 are already installed.
#!/bin/sh
mkdir "cmake-build-debug"
cd "cmake-build-debug"
cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" ..
cmake --build . --target TrebleShot -- -j 2
./TrebleShot