mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
8f649f1586
Fixes #413
10 lines
240 B
Bash
Executable File
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 |