forked from loafle/openapi-generator-original
13 lines
101 B
Bash
Executable File
13 lines
101 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir build
|
|
cd build
|
|
# project
|
|
qmake ../PetStore/PetStore.pro
|
|
|
|
make
|
|
|
|
./PetStore
|