2
0
mirror of synced 2025-01-10 14:26:28 +00:00
2022-03-03 10:50:45 +01:00

10 lines
240 B
Bash
Executable File

#!/bin/bash
make clean
if [[ $OSTYPE == 'darwin'* ]]
then
qmake sandbox.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 && /usr/bin/make qmake_all
else
qmake sandbox.pro CONFIG+=debug CONFIG+=x86_64 && /usr/bin/make qmake_all
fi
make