-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathHTMLQtApp.pro
42 lines (31 loc) · 949 Bytes
/
HTMLQtApp.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
TEMPLATE = app
TARGET = chatserver
QT += qml quick widgets
QT += core websockets webchannel
QT += webengine
CONFIG += c++11
SOURCES += main.cpp \
person.cpp \
dbserver.cpp \
websocketclientwrapper.cpp \
websockettransport.cpp
DEFINES += "BUILD_DIR=\"\\\""$$OUT_PWD"\\\"\""
exampleassets.files += \
index.html
exampleassets.path = C:/Users/vbhardwa/Documents/QT/HTMLQtApp
include(C:/Qt/Examples/Qt-5.7/webchannel/exampleassets.pri)
RESOURCES += qml.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
HEADERS += \
person.h \
dbserver.h \
websocketclientwrapper.h \
websockettransport.h
DISTFILES += \
index.html \
../../../../../Qt/Examples/Qt-5.7/webchannel/exampleassets.pri