forked from loafle/openapi-generator-original
* Add support to UUID type * Simplify and use a simple QString instead of a QUuid. Work for using a QUuid is way larger than supporting QString (imply modifying multiple c++ templates). Current needs are fullfill with the use of a simple QString, so I let the use of QUuid for future enhancement. * - add windows executable for generating qt5 security samples - update sample clients PS : some modifications on the samples are not related to the patch I applied. Were the samples up-to-date ?
11 lines
416 B
Batchfile
11 lines
416 B
Batchfile
set executable=.\modules\swagger-codegen-cli\target\swagger-codegen-cli.jar
|
|
|
|
If Not Exist %executable% (
|
|
mvn clean package
|
|
)
|
|
|
|
REM set JAVA_OPTS=%JAVA_OPTS% -Xmx1024M
|
|
set ags=generate -t modules/swagger-codegen/src/main/resources/qt5cpp -i modules\swagger-codegen\src\test\resources\2_0\petstore-security-test.yaml -l qt5cpp -o samples\client\petstore-security-test\qt5cpp
|
|
|
|
java %JAVA_OPTS% -jar %executable% %ags%
|