-
Notifications
You must be signed in to change notification settings - Fork 1
/
qtbooth.pro
67 lines (56 loc) · 1.64 KB
/
qtbooth.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
QT += qml quick multimedia concurrent xml svg printsupport
CONFIG += c++17 qml_debug
SOURCES += src/collageiconmodel.cpp \
src/collageimagemodel.cpp \
src/collagemodelfactory.cpp \
src/fakeprinter.cpp \
src/fileio.cpp \
src/filesystem.cpp \
src/gpio.cpp \
src/main.cpp \
src/modelparser.cpp \
src/noprinter.cpp \
src/printerfactory.cpp \
src/selphyprinter.cpp \
src/standardprinter.cpp \
src/system.cpp \
src/translationhelper.cpp
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
TRANSLATIONS = "tr_de.ts"
DISTFILES += \
android/AndroidManifest.xml \
android/build.gradle \
android/gradle/wrapper/gradle-wrapper.jar \
android/gradle/wrapper/gradle-wrapper.properties \
android/gradlew \
android/gradlew.bat \
android/res/values/libs.xml
INCLUDEPATH += src/
HEADERS += \
src/abstractprinter.h \
src/call_once.h \
src/collageiconmodel.h \
src/collageimagemodel.h \
src/collagemodelfactory.h \
src/fakeprinter.h \
src/fileio.h \
src/filesystem.h \
src/gpio.h \
src/modelparser.h \
src/noprinter.h \
src/printerfactory.h \
src/selphyprinter.h \
src/standardprinter.h \
src/system.h \
src/translationhelper.h
contains(ANDROID_TARGET_ARCH,x86) {
ANDROID_PACKAGE_SOURCE_DIR = \
$$PWD/android
}
DEFINES += GIT_CURRENT_SHA1="$(shell git -C \""$$_PRO_FILE_PWD_"\" describe)"