qzxing/source/QZXing.pro

277 lines
9.4 KiB
Prolog
Raw Normal View History

#-------------------------------------------------
#
# Project created by QtCreator 2011-11-13T18:12:28
#
#-------------------------------------------------
QT += core gui
VERSION = 2.2
greaterThan(QT_VERSION, 4.7): QT += declarative
TARGET = QZXing
TEMPLATE = lib
# CONFIG += staticlib
DEFINES += QZXING_LIBRARY \
ZXING_ICONV_CONST
INCLUDEPATH += ./
HEADERS += QZXing_global.h \
CameraImageWrapper.h \
imagehandler.h \
qzxing.h \
zxing/ZXing.h \
zxing/IllegalStateException.h \
zxing/InvertedLuminanceSource.h \
zxing/ChecksumException.h \
zxing/ResultPointCallback.h \
zxing/ResultPoint.h \
zxing/Result.h \
zxing/ReaderException.h \
zxing/Reader.h \
zxing/NotFoundException.h \
zxing/MultiFormatReader.h \
zxing/LuminanceSource.h \
zxing/FormatException.h \
zxing/Exception.h \
zxing/DecodeHints.h \
zxing/BinaryBitmap.h \
zxing/Binarizer.h \
zxing/BarcodeFormat.h \
zxing/aztec/AztecReader.h \
zxing/aztec/AztecDetectorResult.h \
zxing/aztec/decoder/Decoder.h \
zxing/aztec/detector/Detector.h \
zxing/common/StringUtils.h \
zxing/common/Str.h \
zxing/common/Point.h \
zxing/common/PerspectiveTransform.h \
zxing/common/IllegalArgumentException.h \
zxing/common/HybridBinarizer.h \
zxing/common/GridSampler.h \
zxing/common/GreyscaleRotatedLuminanceSource.h \
zxing/common/GreyscaleLuminanceSource.h \
zxing/common/GlobalHistogramBinarizer.h \
zxing/common/DetectorResult.h \
zxing/common/DecoderResult.h \
zxing/common/Counted.h \
zxing/common/CharacterSetECI.h \
zxing/common/BitSource.h \
zxing/common/BitMatrix.h \
zxing/common/BitArray.h \
zxing/common/Array.h \
zxing/common/detector/MathUtils.h \
zxing/common/detector/JavaMath.h \
zxing/common/detector/WhiteRectangleDetector.h \
zxing/common/detector/MonochromeRectangleDetector.h \
zxing/common/reedsolomon/ReedSolomonException.h \
zxing/common/reedsolomon/ReedSolomonDecoder.h \
zxing/common/reedsolomon/GenericGFPoly.h \
zxing/common/reedsolomon/GenericGF.h \
zxing/datamatrix/Version.h \
zxing/datamatrix/DataMatrixReader.h \
zxing/datamatrix/decoder/Decoder.h \
zxing/datamatrix/decoder/DecodedBitStreamParser.h \
zxing/datamatrix/decoder/DataBlock.h \
zxing/datamatrix/decoder/BitMatrixParser.h \
zxing/datamatrix/detector/DetectorException.h \
zxing/datamatrix/detector/Detector.h \
zxing/datamatrix/detector/CornerPoint.h \
zxing/oned/UPCEReader.h \
zxing/oned/UPCEANReader.h \
zxing/oned/UPCAReader.h \
zxing/oned/OneDResultPoint.h \
zxing/oned/OneDReader.h \
zxing/oned/MultiFormatUPCEANReader.h \
zxing/oned/MultiFormatOneDReader.h \
zxing/oned/ITFReader.h \
zxing/oned/EAN13Reader.h \
zxing/oned/EAN8Reader.h \
zxing/oned/Code128Reader.h \
zxing/oned/Code39Reader.h \
zxing/oned/CodaBarReader.h \
zxing/oned/Code93Reader.h \
zxing/qrcode/Version.h \
zxing/qrcode/QRCodeReader.h \
zxing/qrcode/FormatInformation.h \
zxing/qrcode/ErrorCorrectionLevel.h \
zxing/qrcode/decoder/Mode.h \
zxing/qrcode/decoder/Decoder.h \
zxing/qrcode/decoder/DecodedBitStreamParser.h \
zxing/qrcode/decoder/DataMask.h \
zxing/qrcode/decoder/DataBlock.h \
zxing/qrcode/decoder/BitMatrixParser.h \
zxing/qrcode/detector/FinderPatternInfo.h \
zxing/qrcode/detector/FinderPatternFinder.h \
zxing/qrcode/detector/FinderPattern.h \
zxing/qrcode/detector/Detector.h \
zxing/qrcode/detector/AlignmentPatternFinder.h \
zxing/qrcode/detector/AlignmentPattern.h \
zxing/multi/MultipleBarcodeReader.h \
zxing/multi/GenericMultipleBarcodeReader.h \
zxing/multi/ByQuadrantReader.h \
zxing/multi/qrcode/QRCodeMultiReader.h \
zxing/multi/qrcode/detector/MultiFinderPatternFinder.h \
zxing/multi/qrcode/detector/MultiDetector.h \
zxing/pdf417/decoder/ec/ErrorCorrection.h \
zxing/pdf417/decoder/ec/ModulusGF.h \
zxing/pdf417/decoder/ec/ModulusPoly.h \
zxing/pdf417/decoder/BitMatrixParser.h \
zxing/pdf417/decoder/DecodedBitStreamParser.h \
zxing/pdf417/decoder/Decoder.h \
zxing/pdf417/detector/Detector.h \
zxing/pdf417/detector/LinesSampler.h \
zxing/pdf417/PDF417Reader.h
SOURCES += CameraImageWrapper.cpp \
qzxing.cpp \
imagehandler.cpp \
zxing/ResultIO.cpp \
zxing/InvertedLuminanceSource.cpp \
zxing/ChecksumException.cpp \
zxing/ResultPointCallback.cpp \
zxing/ResultPoint.cpp \
zxing/Result.cpp \
zxing/Reader.cpp \
zxing/MultiFormatReader.cpp \
zxing/LuminanceSource.cpp \
zxing/FormatException.cpp \
zxing/Exception.cpp \
zxing/DecodeHints.cpp \
zxing/BinaryBitmap.cpp \
zxing/Binarizer.cpp \
zxing/BarcodeFormat.cpp \
zxing/aztec/AztecReader.cpp \
zxing/aztec/AztecDetectorResult.cpp \
zxing/common/StringUtils.cpp \
zxing/common/Str.cpp \
zxing/common/PerspectiveTransform.cpp \
zxing/common/IllegalArgumentException.cpp \
zxing/common/HybridBinarizer.cpp \
zxing/common/GridSampler.cpp \
zxing/common/GreyscaleRotatedLuminanceSource.cpp \
zxing/common/GreyscaleLuminanceSource.cpp \
zxing/common/GlobalHistogramBinarizer.cpp \
zxing/common/DetectorResult.cpp \
zxing/common/DecoderResult.cpp \
zxing/common/CharacterSetECI.cpp \
zxing/common/BitSource.cpp \
zxing/common/BitMatrix.cpp \
zxing/common/BitArray.cpp \
zxing/common/BitArrayIO.cpp \
zxing/common/detector/WhiteRectangleDetector.cpp \
zxing/common/detector/MonochromeRectangleDetector.cpp \
zxing/common/reedsolomon/ReedSolomonException.cpp \
zxing/common/reedsolomon/ReedSolomonDecoder.cpp \
zxing/common/reedsolomon/GenericGFPoly.cpp \
zxing/common/reedsolomon/GenericGF.cpp \
zxing/datamatrix/DataMatrixReader.cpp \
zxing/oned/UPCEReader.cpp \
zxing/oned/UPCEANReader.cpp \
zxing/oned/UPCAReader.cpp \
zxing/oned/OneDResultPoint.cpp \
zxing/oned/OneDReader.cpp \
zxing/oned/MultiFormatUPCEANReader.cpp \
zxing/oned/MultiFormatOneDReader.cpp \
zxing/oned/ITFReader.cpp \
zxing/oned/EAN13Reader.cpp \
zxing/oned/EAN8Reader.cpp \
zxing/oned/Code128Reader.cpp \
zxing/oned/Code39Reader.cpp \
zxing/oned/CodaBarReader.cpp \
zxing/oned/Code93Reader.cpp \
zxing/qrcode/QRCodeReader.cpp \
zxing/multi/MultipleBarcodeReader.cpp \
zxing/multi/GenericMultipleBarcodeReader.cpp \
zxing/multi/ByQuadrantReader.cpp \
zxing/multi/qrcode/QRCodeMultiReader.cpp \
zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp \
zxing/multi/qrcode/detector/MultiDetector.cpp \
zxing/aztec/decoder/AztecDecoder.cpp \
zxing/aztec/detector/AztecDetector.cpp \
zxing/datamatrix/DataMatrixVersion.cpp \
zxing/datamatrix/decoder/DataMatrixDecoder.cpp \
zxing/datamatrix/decoder/DataMatrixBitMatrixParser.cpp \
zxing/datamatrix/decoder/DataMatrixDataBlock.cpp \
zxing/datamatrix/decoder/DataMatrixDecodedBitStreamParser.cpp \
zxing/datamatrix/detector/DataMatrixCornerPoint.cpp \
zxing/datamatrix/detector/DataMatrixDetector.cpp \
zxing/datamatrix/detector/DataMatrixDetectorException.cpp \
zxing/qrcode/decoder/QRBitMatrixParser.cpp \
zxing/qrcode/decoder/QRDataBlock.cpp \
zxing/qrcode/decoder/QRDataMask.cpp \
zxing/qrcode/decoder/QRDecodedBitStreamParser.cpp \
zxing/qrcode/decoder/QRDecoder.cpp \
zxing/qrcode/decoder/QRMode.cpp \
zxing/qrcode/detector/QRAlignmentPattern.cpp \
zxing/qrcode/detector/QRAlignmentPatternFinder.cpp \
zxing/qrcode/detector/QRDetector.cpp \
zxing/qrcode/detector/QRFinderPattern.cpp \
zxing/qrcode/detector/QRFinderPatternFinder.cpp \
zxing/qrcode/detector/QRFinderPatternInfo.cpp \
zxing/qrcode/QRVersion.cpp \
zxing/qrcode/QRFormatInformation.cpp \
zxing/qrcode/QRErrorCorrectionLevel.cpp \
zxing/pdf417/decoder/ec/ErrorCorrection.cpp \
zxing/pdf417/decoder/ec/ModulusGF.cpp \
zxing/pdf417/decoder/ec/ModulusPoly.cpp \
zxing/pdf417/decoder/ec/ModulusPoly.cpp \
zxing/pdf417/decoder/PDF417BitMatrixParser.cpp \
zxing/pdf417/decoder/PDF417DecodedBitStreamParser.cpp \
zxing/pdf417/decoder/PDF417Decoder.cpp \
zxing/pdf417/detector/PDF417Detector.cpp \
zxing/pdf417/detector/LinesSampler.cpp \
zxing/pdf417/PDF417Reader.cpp
symbian {
TARGET.UID3 = 0xE618743C
TARGET.EPOCALLOWDLLDATA = 1
addFiles.sources = QZXing.dll
addFiles.path = !:/sys/bin
DEPLOYMENT += addFiles
# TARGET.CAPABILITY = All -TCB -AllFiles -DRM
TARGET.CAPABILITY += NetworkServices \
ReadUserData \
WriteUserData \
LocalServices \
UserEnvironment \
Location
}
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
DEFINES += NOFMAXL
INSTALLS += target
}
win32{
DEFINES += NO_ICONV
}
OTHER_FILES += \
qtc_packaging/debian_fremantle/rules \
qtc_packaging/debian_fremantle/README \
qtc_packaging/debian_fremantle/copyright \
qtc_packaging/debian_fremantle/control \
qtc_packaging/debian_fremantle/compat \
qtc_packaging/debian_fremantle/changelog \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/README \
qtc_packaging/debian_harmattan/manifest.aegis \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog