blob: 97a68b75cc339619ebcba7ca9f4587a2ee4392f9 (
plain)
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
44
45
|
TARGET = qtwebbrowser
CONFIG += c++11
CONFIG -= app_bundle
SOURCES = \
appengine.cpp \
main.cpp \
navigationhistoryproxymodel.cpp \
touchtracker.cpp
HEADERS = \
appengine.h \
navigationhistoryproxymodel.h \
touchtracker.h \
OTHER_FILES = \
qml/assets/UIButton.qml \
qml/assets/UIToolBar.qml \
qml/BrowserWindow.qml \
qml/FeaturePermissionBar.qml \
qml/MockTouchPoint.qml \
qml/PageView.qml \
qml/NavigationBar.qml \
qml/HomeScreen.qml \
qml/SettingsView.qml \
qml/Keyboard.qml
QT += qml quick webenginequick
RESOURCES += resources.qrc
!cross_compile {
DEFINES += DESKTOP_BUILD
SOURCES += touchmockingapplication.cpp
HEADERS += touchmockingapplication.h
QT += gui-private
isEmpty(INSTALL_PREFIX): INSTALL_PREFIX=/usr/local/bin
} else {
# Path for Qt for Device Creation
isEmpty(INSTALL_PREFIX): INSTALL_PREFIX=/data/user/qt/qtwebbrowser-app
}
target.path = $$INSTALL_PREFIX
INSTALLS += target
|