-
Notifications
You must be signed in to change notification settings - Fork 43
/
terrarium-app.pro
43 lines (37 loc) · 1.06 KB
/
terrarium-app.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
TEMPLATE = app
TARGET = Terrarium
QT += qml quick network sql
webengine {
QT += webengine
DEFINES += USE_WEBENGINE
}
SOURCES += src/main.cpp \
src/qmlhighlighter.cpp \
src/documenthandler.cpp \
qhttpserver/src/qhttpconnection.cpp \
qhttpserver/src/qhttprequest.cpp \
qhttpserver/src/qhttpresponse.cpp \
qhttpserver/src/qhttpserver.cpp \
qhttpserver/http-parser/http_parser.c \
src/quickitemgrabber.cpp
HEADERS += qhttpserver/src/qhttpserver.h \
qhttpserver/src//qhttpresponse.h \
qhttpserver/src//qhttprequest.h \
src/qmlhighlighter.h \
src/documenthandler.h \
qhttpserver/src//qhttpconnection.h \
src/quickitemgrabber.h
INCLUDEPATH += ./qhttpserver/http-parser/
RESOURCES += qml/assets.qrc
android {
ANDROID_PACKAGE_SOURCE_DIR = ./platform/android
}
macx {
QMAKE_MAC_SDK = macosx10.10
QMAKE_INFO_PLIST = platform/mac/Info.plist
ICON = platform/mac/icon.icns
#QMAKE_POST_LINK += macdeployqt Terrarium.app/ -qmldir=qml/ -verbose=1 -dmg
}
ios {
QMAKE_INFO_PLIST = platform/ios/Info.plist
}