All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-qt5-client.Project.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
QT += network

HEADERS += \
# Models
{{#models}}
{{#model}}
    $${PWD}/{{classname}}.h \
{{/model}}
{{/models}}
# APIs
{{#apiInfo}}
{{#apis}}
{{#operations}}
    $${PWD}/{{classname}}.h \
{{/operations}}
{{/apis}}
{{/apiInfo}}
# Others
    $${PWD}/{{prefix}}Helpers.h \
    $${PWD}/{{prefix}}HttpRequest.h \
    $${PWD}/{{prefix}}ModelFactory.h \
    $${PWD}/{{prefix}}Object.h \
    $${PWD}/{{prefix}}QObjectWrapper.h

SOURCES += \
# Models
{{#models}}
{{#model}}
    $${PWD}/{{classname}}.cpp \
{{/model}}
{{/models}}
# APIs
{{#apiInfo}}
{{#apis}}
{{#operations}}
    $${PWD}/{{classname}}.cpp \
{{/operations}}
{{/apis}}
{{/apiInfo}}
# Others
    $${PWD}/{{prefix}}Helpers.cpp \
    $${PWD}/{{prefix}}HttpRequest.cpp





© 2015 - 2024 Weber Informatics LLC | Privacy Policy