chore: introduce build script for sandbox app

Closes #148
This commit is contained in:
Pascal Precht 2021-06-15 11:31:10 +02:00 committed by Michał Cieślak
parent 5e0e8deba8
commit 56828b5cae
2 changed files with 5 additions and 2 deletions

View File

@ -43,8 +43,7 @@ To run the sandbox from within a command line interface, run the following comma
```
$ git clone https://github.com/status-im/StatusQ
$ cd StatusQ/sandbox
$ qmake sandbox.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 && /usr/bin/make qmake_all
$ make
$ ./scripts/build
```
Once that is done, the sandbox can be started with the generated executable:

View File

@ -0,0 +1,4 @@
make clean
qmake sandbox.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 && /usr/bin/make qmake_all
make