-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkoboman.pro
94 lines (84 loc) · 2.3 KB
/
koboman.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Add more folders to ship with the application, here
folder_01.source = qml/koboman
folder_01.target = qml
folder_02.source = imports/net
folder_02.target = imports
DEPLOYMENTFOLDERS = folder_01 folder_02
# Additional import path used to resolve QML modules in Creator's code model
QML_IMPORT_PATH = imports
# The .cpp file which was generated for your project. Feel free to hack it.
SOURCES += main.cpp \
zbar/decoder.c \
zbar/decoder/code39.c \
zbar/decoder/code128.c \
zbar/decoder/ean.c \
zbar/decoder/i25.c \
zbar/scanner.c \
zbar/img_scanner.c \
zbar/symbol.c \
zbar/error.c \
zbar/image.c \
zbar/refcnt.c \
mainwindow.cpp \
barcodescannerbackend.cpp \
barcodescanner.cpp \
barcodescannerthread.cpp \
barcode.cpp \
items/utility.cpp \
library.cpp \
booklistmodel.cpp \
items/toplevelitem.cpp \
items/textureitem.cpp \
items/toplevelcontainer.cpp \
items/itemlistitem.cpp \
items/textlistitem.cpp \
items/buttonboxitem.cpp \
items/themeapi.cpp \
items/actionitem.cpp \
items/busyitem.cpp \
items/itemlistattached.cpp
# Installation path
# target.path =
# Please do not modify the following two lines. Required for deployment.
include(qtquick2applicationviewer/qtquick2applicationviewer.pri)
qtcAddDeployment()
HEADERS += \
zbar/decoder.h \
zbar/zbar.h \
zbar/decoder/code39.h \
zbar/decoder/code128.h \
zbar/decoder/ean.h \
zbar/decoder/i25.h \
zbar/img_scanner.h \
zbar/symbol.h \
zbar/error.h \
zbar/image.h \
zbar/refcnt.h \
mainwindow.hpp \
barcodescannerbackend.hpp \
barcodescanner.hpp \
barcodescannerthread.hpp \
barcode.hpp \
utils.hpp \
items/utility.hpp \
library.hpp \
booklistmodel.hpp \
items/toplevelitem.hpp \
items/textureitem.hpp \
items/toplevelcontainer.hpp \
items/itemlistitem.hpp \
items/textlistitem.hpp \
items/buttonboxitem.hpp \
items/themeapi.hpp \
items/actionitem.hpp \
items/busyitem.hpp \
items/itemlistattached.hpp
INCLUDEPATH += zbar
CONFIG += C++11
QT += multimedia multimediawidgets opengl network xml sql
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android
OTHER_FILES += \
android/AndroidManifest.xml \
imports/net/xylosper/Mobile/qmldir
RESOURCES += \
resources.qrc