mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-18 23:50:51 +00:00
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
|