-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcinematic3d.pro
44 lines (33 loc) · 946 Bytes
/
cinematic3d.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
44
TEMPLATE = app
QT += qml quick
QT += multimedia
SOURCES += main.cpp
RESOURCES += \
qml.qrc \
images.qrc
OTHER_FILES += qml/*.qml
VIDEO_FILES.files = \
# Note: Enable these if videos are bundled locally
#videos/Build_Your_World_With_Qt.mp4 \
#videos/Bluescape_collaborative_workspace.mp4 \
#videos/IoT_and_Qt.mp4 \
#videos/Meet_Qt_Creator.mp4 \
#videos/3D_Planets_Example.mp4
# On OSX videos are bundled, on android installed into assets
osx {
VIDEO_FILES.path = Contents/MacOS
QMAKE_BUNDLE_DATA += VIDEO_FILES
}
android {
VIDEO_FILES.path = /assets/videos
INSTALLS += VIDEO_FILES
}
# Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
DISTFILES += \
android/AndroidManifest.xml \
android/res/values/libs.xml \
android/build.gradle
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android