-
Notifications
You must be signed in to change notification settings - Fork 6
/
ti-apps-launcher.pro
44 lines (35 loc) · 1.63 KB
/
ti-apps-launcher.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
QT += quick
#virtualkeyboard
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += ti-apps-launcher.cpp backend/appsmenu.cpp backend/stats.cpp backend/benchmarks.cpp backend/camera.cpp backend/gpu_performance.cpp backend/live_camera.cpp utils/perf_stats.cpp backend/deviceinfo.cpp
SOURCES += backend/run_cmd.cpp backend/settings.cpp backend/arm_analytics.cpp backend/topbar.cpp backend/wifi.cpp
CONFIG += debug_and_release
RESOURCES += ti-apps-launcher.qrc
QT += multimedia
QT += widgets
QML_IMPORT_NAME = io.qt.examples.backend
QML_IMPORT_MAJOR_VERSION = 1
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Additional import path used to resolve QML modules just for Qt Quick Designer
QML_DESIGNER_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 += backend/includes/common.h
HEADERS += backend/includes/camera.h
HEADERS += backend/includes/live_camera.h
HEADERS += backend/includes/benchmarks.h
HEADERS += backend/includes/gpu_performance.h
HEADERS += backend/includes/stats.h
HEADERS += backend/includes/appsmenu.h
HEADERS += utils/includes/perf_stats.h
HEADERS += backend/includes/run_cmd.h
HEADERS += backend/includes/settings.h
HEADERS += backend/includes/deviceinfo.h
HEADERS += backend/includes/arm_analytics.h
HEADERS += backend/includes/topbar.h
HEADERS += backend/includes/wifi.h