10 lines
240 B
Plaintext
Raw Normal View History

2022-03-03 10:44:24 +01:00
#!/bin/bash
2022-03-03 10:44:24 +01:00
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