mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 06:24:06 -08:00
f78c18671b
By V1.2 support to Aztec codes is added. It now fully supports Qt Quick. Symbian Examples are updated to comply with the changes. git-svn-id: https://zxing.googlecode.com/svn/trunk@2296 59b500cc-1b3d-0410-9834-0bbf25fbcc57
39 lines
795 B
Prolog
39 lines
795 B
Prolog
TEMPLATE=app
|
|
|
|
VERSION = 1.1.0
|
|
|
|
QT += declarative network
|
|
|
|
!maemo5 {
|
|
contains(QT_CONFIG, opengl) {
|
|
# QT += opengl
|
|
}
|
|
}
|
|
|
|
win32 {
|
|
#required by Qt SDK to resolve Mobility libraries
|
|
CONFIG+=mobility
|
|
MOBILITY+=multimedia
|
|
}
|
|
|
|
SOURCES += $$PWD/qmlcamera.cpp
|
|
!mac:TARGET = QMLBarcodeReader
|
|
else:TARGET = QMLBarcodeReader
|
|
|
|
RESOURCES += declarative-camera.qrc
|
|
|
|
symbian {
|
|
TARGET.CAPABILITY = UserEnvironment NetworkServices Location ReadUserData WriteUserData
|
|
TARGET.EPOCHEAPSIZE = 0x20000 0x3000000
|
|
|
|
LIBS += -lqzxing
|
|
|
|
customrules.pkg_prerules = \
|
|
";QZXing" \
|
|
"@\"$$(EPOCROOT)Epoc32/InstallToDevice/QZXing_selfsigned.sis\",(0xE618743C)"\
|
|
" "
|
|
DEPLOYMENT += customrules
|
|
}
|
|
|
|
ICON = QMLBarcodeReader.svg
|