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

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

There is a newer version: 7.7.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}}Object.h \
    $${PWD}/{{prefix}}Enum.h \
    $${PWD}/{{prefix}}HttpFileElement.h \
    $${PWD}/{{prefix}}ServerConfiguration.h \
    $${PWD}/{{prefix}}ServerVariable.h \
    $${PWD}/{{prefix}}Oauth.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 \
    $${PWD}/{{prefix}}HttpFileElement.cpp \
    $${PWD}/{{prefix}}Oauth.cpp




© 2015 - 2024 Weber Informatics LLC | Privacy Policy