summaryrefslogtreecommitdiffstats
path: root/examples/httpserver/simple/simple.pro
blob: e7471ba69873c0997af6ccf6b97cd431830a3c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
requires(qtHaveModule(httpserver))

TEMPLATE = app

CONFIG += cmdline
QT = httpserver
android: QT += gui

SOURCES += \
    main.cpp

target.path = $$[QT_INSTALL_EXAMPLES]/httpserver/simple
INSTALLS += target

RESOURCES += \
    assets/certificate.crt \
    assets/private.key \
    assets/qt-logo.png

CONFIG += cmdline