zxing_cpp_no_cmake 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.gitmodules +0 -0
- data/CHANGELOG.rdoc +6 -0
- data/Gemfile +3 -0
- data/Manifest.txt +375 -0
- data/README.rdoc +141 -0
- data/Rakefile +28 -0
- data/bin/zxd +87 -0
- data/bin/zxe +53 -0
- data/ext/zxing/extconf.rb +20 -0
- data/ext/zxing/zxing-cpp/.gitignore +2 -0
- data/ext/zxing/zxing-cpp/AUTHORS +115 -0
- data/ext/zxing/zxing-cpp/CMakeLists.txt +89 -0
- data/ext/zxing/zxing-cpp/COPYING +201 -0
- data/ext/zxing/zxing-cpp/NOTICE +65 -0
- data/ext/zxing/zxing-cpp/README.md +45 -0
- data/ext/zxing/zxing-cpp/build/CMakeCache.txt +382 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeCCompiler.cmake +76 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeCXXCompiler.cmake +79 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeDetermineCompilerABI_C.bin +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeDetermineCompilerABI_CXX.bin +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CMakeSystem.cmake +15 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdC/CMakeCCompilerId.c +665 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdC/a.out +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +644 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/3.15.4/CompilerIdCXX/a.out +0 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/CMakeDirectoryInformation.cmake +16 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/CMakeOutput.log +447 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/Makefile.cmake +125 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/Makefile2 +177 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/TargetDirectories.txt +9 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/cmake.check_cache +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/CXX.includecache +1892 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/DependInfo.cmake +120 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/build.make +1584 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/cmake_clean.cmake +109 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/cmake_clean_target.cmake +3 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/depend.internal +1465 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/depend.make +1465 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/link.txt +2 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/progress.make +102 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/progress.marks +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/CXX.includecache +344 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/DependInfo.cmake +33 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/build.make +266 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/cmake_clean.cmake +21 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/depend.internal +103 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/depend.make +103 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/link.txt +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/progress.make +14 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/CXX.includecache +378 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/DependInfo.cmake +25 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/build.make +145 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/cmake_clean.cmake +13 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/depend.internal +53 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/depend.make +53 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/flags.make +10 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/link.txt +1 -0
- data/ext/zxing/zxing-cpp/build/CMakeFiles/zxing.dir/progress.make +6 -0
- data/ext/zxing/zxing-cpp/build/Makefile +3706 -0
- data/ext/zxing/zxing-cpp/build/cmake_install.cmake +73 -0
- data/ext/zxing/zxing-cpp/build/libzxing.a +0 -0
- data/ext/zxing/zxing-cpp/build/testrunner +0 -0
- data/ext/zxing/zxing-cpp/build/zxing +0 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.cpp +113 -0
- data/ext/zxing/zxing-cpp/cli/src/ImageReaderSource.h +40 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.cpp +3174 -0
- data/ext/zxing/zxing-cpp/cli/src/jpgd.h +319 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.cpp +6261 -0
- data/ext/zxing/zxing-cpp/cli/src/lodepng.h +1695 -0
- data/ext/zxing/zxing-cpp/cli/src/main.cpp +297 -0
- data/ext/zxing/zxing-cpp/cmake/FindCPPUNIT.cmake +54 -0
- data/ext/zxing/zxing-cpp/cmake/FindIconv.cmake +57 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/.gitignore +6 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.cc +405 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigInteger.hh +215 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.cc +70 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerAlgorithms.hh +25 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerLibrary.hh +8 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.cc +50 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigIntegerUtils.hh +72 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.cc +697 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsigned.hh +418 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.cc +125 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/BigUnsignedInABase.hh +122 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/ChangeLog +146 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/Makefile +73 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/NumberlikeArray.hh +177 -0
- data/ext/zxing/zxing-cpp/core/src/bigint/README +71 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/iconv.h +14 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/stdint.h +247 -0
- data/ext/zxing/zxing-cpp/core/src/win32/zxing/win_iconv.c +2035 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.cpp +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BarcodeFormat.h +60 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.cpp +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Binarizer.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/BinaryBitmap.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ChecksumException.h +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.cpp +142 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/DecodeHints.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.cpp +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Exception.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/FormatException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/IllegalStateException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/InvertedLuminanceSource.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.cpp +86 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/LuminanceSource.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.cpp +124 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/MultiFormatReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/NotFoundException.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Reader.h +40 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ReaderException.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/Result.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultIO.cpp +34 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.cpp +108 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPoint.h +55 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.cpp +26 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ResultPointCallback.h +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/ZXing.h +133 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecDetectorResult.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.cpp +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/AztecReader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.cpp +489 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/decoder/Decoder.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.cpp +548 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/aztec/detector/Detector.h +92 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Array.h +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.cpp +155 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArray.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitArrayIO.cpp +31 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.cpp +143 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitMatrix.h +91 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.cpp +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/BitSource.h +74 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.cpp +105 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/CharacterSetECI.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Counted.h +140 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DecoderResult.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.cpp +39 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/DetectorResult.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.cpp +212 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GlobalHistogramBinarizer.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.cpp +80 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleLuminanceSource.h +53 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.cpp +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GreyscaleRotatedLuminanceSource.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.cpp +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/GridSampler.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.cpp +226 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/HybridBinarizer.h +67 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.cpp +27 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/IllegalArgumentException.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/PerspectiveTransform.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Point.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.cpp +61 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/Str.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.cpp +198 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/StringUtils.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/JavaMath.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MathUtils.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.cpp +175 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/MonochromeRectangleDetector.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.cpp +330 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/detector/WhiteRectangleDetector.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.cpp +150 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGF.h +73 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.cpp +218 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/GenericGFPoly.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.cpp +174 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/common/reedsolomon/ReedSolomonException.h +33 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.cpp +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/DataMatrixReader.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.cpp +199 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/Version.h +87 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.cpp +361 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/BitMatrixParser.h +59 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.cpp +113 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DataBlock.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.cpp +415 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/DecodedBitStreamParser.h +104 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.cpp +93 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/decoder/Decoder.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.cpp +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/CornerPoint.h +43 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.cpp +447 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/Detector.h +94 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.cpp +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/datamatrix/detector/DetectorException.h +23 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.cpp +75 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/ByQuadrantReader.h +42 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.cpp +137 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/GenericMultipleBarcodeReader.h +51 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.cpp +29 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/MultipleBarcodeReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/QRCodeMultiReader.h +36 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiDetector.h +37 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.cpp +236 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.cpp +340 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/CodaBarReader.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.cpp +497 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code128Reader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.cpp +329 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code39Reader.h +63 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.cpp +303 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/Code93Reader.h +58 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.cpp +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN13Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/EAN8Reader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.cpp +337 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/ITFReader.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.cpp +96 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatOneDReader.h +38 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.cpp +110 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/MultiFormatUPCEANReader.h +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.cpp +228 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDReader.h +81 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.cpp +28 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/OneDResultPoint.h +35 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.cpp +70 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCAReader.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.cpp +309 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEANReader.h +88 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.cpp +146 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/oned/UPCEReader.h +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.cpp +170 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/PDF417Reader.h +49 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.cpp +997 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/BitMatrixParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.cpp +563 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/DecodedBitStreamParser.h +84 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/Decoder.h +62 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.cpp +214 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ErrorCorrection.h +71 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.cpp +120 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusGF.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.cpp +284 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/decoder/ec/ModulusPoly.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.cpp +665 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/Detector.h +106 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.cpp +715 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/pdf417/detector/LinesSampler.h +122 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.cpp +65 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/ErrorCorrectionLevel.h +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.cpp +117 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/FormatInformation.h +54 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/QRCodeReader.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.cpp +560 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/Version.h +85 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.cpp +183 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/BitMatrixParser.h +56 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.cpp +118 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataBlock.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.cpp +159 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DataMask.h +50 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.cpp +428 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/DecodedBitStreamParser.h +72 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.cpp +107 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Decoder.h +46 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.cpp +90 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/decoder/Mode.h +57 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPattern.h +45 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.cpp +208 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/AlignmentPatternFinder.h +68 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.cpp +315 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/Detector.h +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPattern.h +48 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.cpp +559 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternFinder.h +76 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.cpp +41 -0
- data/ext/zxing/zxing-cpp/core/src/zxing/qrcode/detector/FinderPatternInfo.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp +30 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp +216 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h +61 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp +106 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h +55 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h +42 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp +58 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h +46 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp +69 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp +129 -0
- data/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h +62 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h +45 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h +47 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp +88 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h +49 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp +132 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h +91 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp +52 -0
- data/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h +47 -0
- data/ext/zxing/zxing.cc +224 -0
- data/lib/zxing.rb +50 -0
- data/lib/zxing/.gitignore +2 -0
- data/lib/zxing/aztec.rb +5 -0
- data/lib/zxing/aztec/aztec_reader.rb +14 -0
- data/lib/zxing/bad_image_exception.rb +4 -0
- data/lib/zxing/binarizer.rb +8 -0
- data/lib/zxing/binary_bitmap.rb +15 -0
- data/lib/zxing/checksum_exception.rb +4 -0
- data/lib/zxing/common.rb +7 -0
- data/lib/zxing/common/bit_matrix.rb +9 -0
- data/lib/zxing/common/hybrid_binarizer.rb +17 -0
- data/lib/zxing/common/illegal_argument_exception.rb +4 -0
- data/lib/zxing/datamatrix.rb +5 -0
- data/lib/zxing/datamatrix/data_matrix_reader.rb +14 -0
- data/lib/zxing/decodable.rb +11 -0
- data/lib/zxing/exception.rb +4 -0
- data/lib/zxing/ffi.rb +20 -0
- data/lib/zxing/ffi/aztec.rb +6 -0
- data/lib/zxing/ffi/aztec/aztec_reader.rb +9 -0
- data/lib/zxing/ffi/binarizer.rb +25 -0
- data/lib/zxing/ffi/binary_bitmap.rb +15 -0
- data/lib/zxing/ffi/common.rb +8 -0
- data/lib/zxing/ffi/common/bit_matrix.rb +12 -0
- data/lib/zxing/ffi/common/greyscale_luminance_source.rb +30 -0
- data/lib/zxing/ffi/common/hybrid_binarizer.rb +10 -0
- data/lib/zxing/ffi/datamatrix.rb +6 -0
- data/lib/zxing/ffi/datamatrix/data_matrix_reader.rb +9 -0
- data/lib/zxing/ffi/library.rb +102 -0
- data/lib/zxing/ffi/luminance_source.rb +18 -0
- data/lib/zxing/ffi/multi_format_reader.rb +9 -0
- data/lib/zxing/ffi/oned.rb +6 -0
- data/lib/zxing/ffi/oned/code_39_reader.rb +10 -0
- data/lib/zxing/ffi/qrcode.rb +8 -0
- data/lib/zxing/ffi/qrcode/decoder.rb +10 -0
- data/lib/zxing/ffi/qrcode/detector.rb +10 -0
- data/lib/zxing/ffi/reader.rb +58 -0
- data/lib/zxing/ffi/result.rb +23 -0
- data/lib/zxing/format_exception.rb +4 -0
- data/lib/zxing/illegal_argument_exception.rb +4 -0
- data/lib/zxing/image.rb +15 -0
- data/lib/zxing/luminance_source.rb +18 -0
- data/lib/zxing/multi_format_reader.rb +11 -0
- data/lib/zxing/not_found_exception.rb +4 -0
- data/lib/zxing/oned.rb +5 -0
- data/lib/zxing/oned/code_39_reader.rb +15 -0
- data/lib/zxing/qrcode.rb +8 -0
- data/lib/zxing/qrcode/decoder.rb +14 -0
- data/lib/zxing/qrcode/detector.rb +14 -0
- data/lib/zxing/qrcode/encoder.rb +8 -0
- data/lib/zxing/qrcode/encoder/byte_matrix.rb +18 -0
- data/lib/zxing/qrcode/encoder/encoder.rb +9 -0
- data/lib/zxing/qrcode/encoder/qrcode.rb +18 -0
- data/lib/zxing/reader.rb +8 -0
- data/lib/zxing/reader_exception.rb +4 -0
- data/lib/zxing/reed_solomon_exception.rb +2 -0
- data/lib/zxing/result.rb +18 -0
- data/lib/zxing/rmagick.rb +5 -0
- data/lib/zxing/rmagick/image.rb +109 -0
- data/lib/zxing/version.rb +33 -0
- data/zxing_cpp.gemspec +36 -0
- metadata +515 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
# The set of languages for which implicit dependencies are needed:
|
2
|
+
set(CMAKE_DEPENDS_LANGUAGES
|
3
|
+
"CXX"
|
4
|
+
)
|
5
|
+
# The set of files for implicit dependencies of each language:
|
6
|
+
set(CMAKE_DEPENDS_CHECK_CXX
|
7
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o"
|
8
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o"
|
9
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o"
|
10
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o"
|
11
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o"
|
12
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o"
|
13
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o"
|
14
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o"
|
15
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o"
|
16
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o"
|
17
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o"
|
18
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp" "/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o"
|
19
|
+
)
|
20
|
+
set(CMAKE_CXX_COMPILER_ID "GNU")
|
21
|
+
|
22
|
+
# The include file search paths:
|
23
|
+
set(CMAKE_CXX_TARGET_INCLUDE_PATH
|
24
|
+
".././core/src"
|
25
|
+
)
|
26
|
+
|
27
|
+
# Targets to which this target links.
|
28
|
+
set(CMAKE_TARGET_LINKED_INFO_FILES
|
29
|
+
"/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/libzxing.dir/DependInfo.cmake"
|
30
|
+
)
|
31
|
+
|
32
|
+
# Fortran module output directory.
|
33
|
+
set(CMAKE_Fortran_TARGET_MODULE_DIR "")
|
@@ -0,0 +1,266 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
3
|
+
|
4
|
+
# Delete rule output on recipe failure.
|
5
|
+
.DELETE_ON_ERROR:
|
6
|
+
|
7
|
+
|
8
|
+
#=============================================================================
|
9
|
+
# Special targets provided by cmake.
|
10
|
+
|
11
|
+
# Disable implicit rules so canonical targets will work.
|
12
|
+
.SUFFIXES:
|
13
|
+
|
14
|
+
|
15
|
+
# Remove some rules from gmake that .SUFFIXES does not remove.
|
16
|
+
SUFFIXES =
|
17
|
+
|
18
|
+
.SUFFIXES: .hpux_make_needs_suffix_list
|
19
|
+
|
20
|
+
|
21
|
+
# Suppress display of executed commands.
|
22
|
+
$(VERBOSE).SILENT:
|
23
|
+
|
24
|
+
|
25
|
+
# A target that is always out of date.
|
26
|
+
cmake_force:
|
27
|
+
|
28
|
+
.PHONY : cmake_force
|
29
|
+
|
30
|
+
#=============================================================================
|
31
|
+
# Set environment variables for the build.
|
32
|
+
|
33
|
+
# The shell in which to execute make rules.
|
34
|
+
SHELL = /bin/sh
|
35
|
+
|
36
|
+
# The CMake executable.
|
37
|
+
CMAKE_COMMAND = /usr/bin/cmake
|
38
|
+
|
39
|
+
# The command to remove a file.
|
40
|
+
RM = /usr/bin/cmake -E remove -f
|
41
|
+
|
42
|
+
# Escaping for special characters.
|
43
|
+
EQUALS = =
|
44
|
+
|
45
|
+
# The top-level source directory on which CMake was run.
|
46
|
+
CMAKE_SOURCE_DIR = /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp
|
47
|
+
|
48
|
+
# The top-level build directory on which CMake was run.
|
49
|
+
CMAKE_BINARY_DIR = /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build
|
50
|
+
|
51
|
+
# Include any dependencies generated for this target.
|
52
|
+
include CMakeFiles/testrunner.dir/depend.make
|
53
|
+
|
54
|
+
# Include the progress variables for this target.
|
55
|
+
include CMakeFiles/testrunner.dir/progress.make
|
56
|
+
|
57
|
+
# Include the compile flags for this target's objects.
|
58
|
+
include CMakeFiles/testrunner.dir/flags.make
|
59
|
+
|
60
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
61
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o: ../core/tests/src/TestRunner.cpp
|
62
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o"
|
63
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp
|
64
|
+
|
65
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.i: cmake_force
|
66
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.i"
|
67
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp > CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.i
|
68
|
+
|
69
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.s: cmake_force
|
70
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.s"
|
71
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp -o CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.s
|
72
|
+
|
73
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
74
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/tests/src/common/BitArrayTest.cpp
|
75
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o"
|
76
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp
|
77
|
+
|
78
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.i: cmake_force
|
79
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.i"
|
80
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.i
|
81
|
+
|
82
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.s: cmake_force
|
83
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.s"
|
84
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.s
|
85
|
+
|
86
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
87
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/tests/src/common/BitMatrixTest.cpp
|
88
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o"
|
89
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp
|
90
|
+
|
91
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.i: cmake_force
|
92
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.i"
|
93
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.i
|
94
|
+
|
95
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.s: cmake_force
|
96
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.s"
|
97
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.s
|
98
|
+
|
99
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
100
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/tests/src/common/BitSourceTest.cpp
|
101
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o"
|
102
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp
|
103
|
+
|
104
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.i: cmake_force
|
105
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.i"
|
106
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.i
|
107
|
+
|
108
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.s: cmake_force
|
109
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.s"
|
110
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.s
|
111
|
+
|
112
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
113
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o: ../core/tests/src/common/CountedTest.cpp
|
114
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o"
|
115
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp
|
116
|
+
|
117
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.i: cmake_force
|
118
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.i"
|
119
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.i
|
120
|
+
|
121
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.s: cmake_force
|
122
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.s"
|
123
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.s
|
124
|
+
|
125
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
126
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: ../core/tests/src/common/PerspectiveTransformTest.cpp
|
127
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o"
|
128
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp
|
129
|
+
|
130
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.i: cmake_force
|
131
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.i"
|
132
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.i
|
133
|
+
|
134
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.s: cmake_force
|
135
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.s"
|
136
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.s
|
137
|
+
|
138
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
139
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/tests/src/common/reedsolomon/ReedSolomonTest.cpp
|
140
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_7) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o"
|
141
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp
|
142
|
+
|
143
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.i: cmake_force
|
144
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.i"
|
145
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.i
|
146
|
+
|
147
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.s: cmake_force
|
148
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.s"
|
149
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.s
|
150
|
+
|
151
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
152
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp
|
153
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_8) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o"
|
154
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp
|
155
|
+
|
156
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.i: cmake_force
|
157
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.i"
|
158
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.i
|
159
|
+
|
160
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.s: cmake_force
|
161
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.s"
|
162
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.s
|
163
|
+
|
164
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
165
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/tests/src/qrcode/FormatInformationTest.cpp
|
166
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_9) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o"
|
167
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp
|
168
|
+
|
169
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.i: cmake_force
|
170
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.i"
|
171
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.i
|
172
|
+
|
173
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.s: cmake_force
|
174
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.s"
|
175
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.s
|
176
|
+
|
177
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
178
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/tests/src/qrcode/VersionTest.cpp
|
179
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_10) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o"
|
180
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp
|
181
|
+
|
182
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.i: cmake_force
|
183
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.i"
|
184
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.i
|
185
|
+
|
186
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.s: cmake_force
|
187
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.s"
|
188
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.s
|
189
|
+
|
190
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
191
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/tests/src/qrcode/decoder/DataMaskTest.cpp
|
192
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_11) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o"
|
193
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp
|
194
|
+
|
195
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.i: cmake_force
|
196
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.i"
|
197
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.i
|
198
|
+
|
199
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.s: cmake_force
|
200
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.s"
|
201
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.s
|
202
|
+
|
203
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: CMakeFiles/testrunner.dir/flags.make
|
204
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/tests/src/qrcode/decoder/ModeTest.cpp
|
205
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_12) "Building CXX object CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o"
|
206
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o -c /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp
|
207
|
+
|
208
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.i: cmake_force
|
209
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.i"
|
210
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp > CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.i
|
211
|
+
|
212
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.s: cmake_force
|
213
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.s"
|
214
|
+
/usr/bin/g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp -o CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.s
|
215
|
+
|
216
|
+
# Object files for target testrunner
|
217
|
+
testrunner_OBJECTS = \
|
218
|
+
"CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o" \
|
219
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o" \
|
220
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o" \
|
221
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o" \
|
222
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o" \
|
223
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o" \
|
224
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o" \
|
225
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o" \
|
226
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o" \
|
227
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o" \
|
228
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o" \
|
229
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o"
|
230
|
+
|
231
|
+
# External object files for target testrunner
|
232
|
+
testrunner_EXTERNAL_OBJECTS =
|
233
|
+
|
234
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o
|
235
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o
|
236
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o
|
237
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o
|
238
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o
|
239
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o
|
240
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o
|
241
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o
|
242
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o
|
243
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o
|
244
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o
|
245
|
+
testrunner: CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o
|
246
|
+
testrunner: CMakeFiles/testrunner.dir/build.make
|
247
|
+
testrunner: libzxing.a
|
248
|
+
testrunner: /usr/lib64/libcppunit.so
|
249
|
+
testrunner: /usr/lib64/libc.so
|
250
|
+
testrunner: CMakeFiles/testrunner.dir/link.txt
|
251
|
+
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_13) "Linking CXX executable testrunner"
|
252
|
+
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/testrunner.dir/link.txt --verbose=$(VERBOSE)
|
253
|
+
|
254
|
+
# Rule to build all files generated by this target.
|
255
|
+
CMakeFiles/testrunner.dir/build: testrunner
|
256
|
+
|
257
|
+
.PHONY : CMakeFiles/testrunner.dir/build
|
258
|
+
|
259
|
+
CMakeFiles/testrunner.dir/clean:
|
260
|
+
$(CMAKE_COMMAND) -P CMakeFiles/testrunner.dir/cmake_clean.cmake
|
261
|
+
.PHONY : CMakeFiles/testrunner.dir/clean
|
262
|
+
|
263
|
+
CMakeFiles/testrunner.dir/depend:
|
264
|
+
cd /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build /home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/build/CMakeFiles/testrunner.dir/DependInfo.cmake --color=$(COLOR)
|
265
|
+
.PHONY : CMakeFiles/testrunner.dir/depend
|
266
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
file(REMOVE_RECURSE
|
2
|
+
"CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o"
|
3
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o"
|
4
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o"
|
5
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o"
|
6
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o"
|
7
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o"
|
8
|
+
"CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o"
|
9
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o"
|
10
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o"
|
11
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o"
|
12
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o"
|
13
|
+
"CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o"
|
14
|
+
"testrunner"
|
15
|
+
"testrunner.pdb"
|
16
|
+
)
|
17
|
+
|
18
|
+
# Per-language clean rules from dependency scanning.
|
19
|
+
foreach(lang CXX)
|
20
|
+
include(CMakeFiles/testrunner.dir/cmake_clean_${lang}.cmake OPTIONAL)
|
21
|
+
endforeach()
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
3
|
+
|
4
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o
|
5
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/TestRunner.cpp
|
6
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o
|
7
|
+
../core/src/zxing/Exception.h
|
8
|
+
../core/src/zxing/ZXing.h
|
9
|
+
../core/src/zxing/common/Array.h
|
10
|
+
../core/src/zxing/common/BitArray.h
|
11
|
+
../core/src/zxing/common/Counted.h
|
12
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
13
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.cpp
|
14
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitArrayTest.h
|
15
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o
|
16
|
+
../core/src/zxing/Exception.h
|
17
|
+
../core/src/zxing/ZXing.h
|
18
|
+
../core/src/zxing/common/Array.h
|
19
|
+
../core/src/zxing/common/BitArray.h
|
20
|
+
../core/src/zxing/common/BitMatrix.h
|
21
|
+
../core/src/zxing/common/Counted.h
|
22
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
23
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.cpp
|
24
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitMatrixTest.h
|
25
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o
|
26
|
+
../core/src/zxing/common/Array.h
|
27
|
+
../core/src/zxing/common/BitSource.h
|
28
|
+
../core/src/zxing/common/Counted.h
|
29
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.cpp
|
30
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/BitSourceTest.h
|
31
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o
|
32
|
+
../core/src/zxing/common/Counted.h
|
33
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.cpp
|
34
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/CountedTest.h
|
35
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o
|
36
|
+
../core/src/zxing/common/Counted.h
|
37
|
+
../core/src/zxing/common/PerspectiveTransform.h
|
38
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.cpp
|
39
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/PerspectiveTransformTest.h
|
40
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o
|
41
|
+
../core/src/zxing/Exception.h
|
42
|
+
../core/src/zxing/common/Array.h
|
43
|
+
../core/src/zxing/common/Counted.h
|
44
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
45
|
+
../core/src/zxing/common/reedsolomon/GenericGF.h
|
46
|
+
../core/src/zxing/common/reedsolomon/GenericGFPoly.h
|
47
|
+
../core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h
|
48
|
+
../core/src/zxing/common/reedsolomon/ReedSolomonException.h
|
49
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp
|
50
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/common/reedsolomon/ReedSolomonTest.h
|
51
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o
|
52
|
+
../core/src/zxing/Exception.h
|
53
|
+
../core/src/zxing/ReaderException.h
|
54
|
+
../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
55
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp
|
56
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h
|
57
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o
|
58
|
+
../core/src/zxing/Exception.h
|
59
|
+
../core/src/zxing/ReaderException.h
|
60
|
+
../core/src/zxing/common/Counted.h
|
61
|
+
../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
62
|
+
../core/src/zxing/qrcode/FormatInformation.h
|
63
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/ErrorCorrectionLevelTest.h
|
64
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.cpp
|
65
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/FormatInformationTest.h
|
66
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o
|
67
|
+
../core/src/zxing/Exception.h
|
68
|
+
../core/src/zxing/ReaderException.h
|
69
|
+
../core/src/zxing/ZXing.h
|
70
|
+
../core/src/zxing/common/Array.h
|
71
|
+
../core/src/zxing/common/BitArray.h
|
72
|
+
../core/src/zxing/common/BitMatrix.h
|
73
|
+
../core/src/zxing/common/Counted.h
|
74
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
75
|
+
../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
76
|
+
../core/src/zxing/qrcode/Version.h
|
77
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.cpp
|
78
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/VersionTest.h
|
79
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o
|
80
|
+
../core/src/zxing/Exception.h
|
81
|
+
../core/src/zxing/ZXing.h
|
82
|
+
../core/src/zxing/common/Array.h
|
83
|
+
../core/src/zxing/common/BitArray.h
|
84
|
+
../core/src/zxing/common/BitMatrix.h
|
85
|
+
../core/src/zxing/common/Counted.h
|
86
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
87
|
+
../core/src/zxing/qrcode/decoder/DataMask.h
|
88
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.cpp
|
89
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/DataMaskTest.h
|
90
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o
|
91
|
+
../core/src/zxing/Exception.h
|
92
|
+
../core/src/zxing/ReaderException.h
|
93
|
+
../core/src/zxing/ZXing.h
|
94
|
+
../core/src/zxing/common/Array.h
|
95
|
+
../core/src/zxing/common/BitArray.h
|
96
|
+
../core/src/zxing/common/BitMatrix.h
|
97
|
+
../core/src/zxing/common/Counted.h
|
98
|
+
../core/src/zxing/common/IllegalArgumentException.h
|
99
|
+
../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
100
|
+
../core/src/zxing/qrcode/Version.h
|
101
|
+
../core/src/zxing/qrcode/decoder/Mode.h
|
102
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.cpp
|
103
|
+
/home/nigel/r/zxing_cpp.rb/ext/zxing/zxing-cpp/core/tests/src/qrcode/decoder/ModeTest.h
|
@@ -0,0 +1,103 @@
|
|
1
|
+
# CMAKE generated file: DO NOT EDIT!
|
2
|
+
# Generated by "Unix Makefiles" Generator, CMake Version 3.15
|
3
|
+
|
4
|
+
CMakeFiles/testrunner.dir/core/tests/src/TestRunner.cpp.o: ../core/tests/src/TestRunner.cpp
|
5
|
+
|
6
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/Exception.h
|
7
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/ZXing.h
|
8
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/common/Array.h
|
9
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/common/BitArray.h
|
10
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/common/Counted.h
|
11
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
12
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/tests/src/common/BitArrayTest.cpp
|
13
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitArrayTest.cpp.o: ../core/tests/src/common/BitArrayTest.h
|
14
|
+
|
15
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/Exception.h
|
16
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/ZXing.h
|
17
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/common/Array.h
|
18
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/common/BitArray.h
|
19
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/common/BitMatrix.h
|
20
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/common/Counted.h
|
21
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
22
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/tests/src/common/BitMatrixTest.cpp
|
23
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitMatrixTest.cpp.o: ../core/tests/src/common/BitMatrixTest.h
|
24
|
+
|
25
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/src/zxing/common/Array.h
|
26
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/src/zxing/common/BitSource.h
|
27
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/src/zxing/common/Counted.h
|
28
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/tests/src/common/BitSourceTest.cpp
|
29
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/BitSourceTest.cpp.o: ../core/tests/src/common/BitSourceTest.h
|
30
|
+
|
31
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o: ../core/src/zxing/common/Counted.h
|
32
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o: ../core/tests/src/common/CountedTest.cpp
|
33
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/CountedTest.cpp.o: ../core/tests/src/common/CountedTest.h
|
34
|
+
|
35
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: ../core/src/zxing/common/Counted.h
|
36
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: ../core/src/zxing/common/PerspectiveTransform.h
|
37
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: ../core/tests/src/common/PerspectiveTransformTest.cpp
|
38
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/PerspectiveTransformTest.cpp.o: ../core/tests/src/common/PerspectiveTransformTest.h
|
39
|
+
|
40
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/Exception.h
|
41
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/Array.h
|
42
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/Counted.h
|
43
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
44
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/reedsolomon/GenericGF.h
|
45
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/reedsolomon/GenericGFPoly.h
|
46
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/reedsolomon/ReedSolomonDecoder.h
|
47
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/src/zxing/common/reedsolomon/ReedSolomonException.h
|
48
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/tests/src/common/reedsolomon/ReedSolomonTest.cpp
|
49
|
+
CMakeFiles/testrunner.dir/core/tests/src/common/reedsolomon/ReedSolomonTest.cpp.o: ../core/tests/src/common/reedsolomon/ReedSolomonTest.h
|
50
|
+
|
51
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/src/zxing/Exception.h
|
52
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/src/zxing/ReaderException.h
|
53
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
54
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp
|
55
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/ErrorCorrectionLevelTest.cpp.o: ../core/tests/src/qrcode/ErrorCorrectionLevelTest.h
|
56
|
+
|
57
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/src/zxing/Exception.h
|
58
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/src/zxing/ReaderException.h
|
59
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/src/zxing/common/Counted.h
|
60
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
61
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/src/zxing/qrcode/FormatInformation.h
|
62
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/tests/src/qrcode/ErrorCorrectionLevelTest.h
|
63
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/tests/src/qrcode/FormatInformationTest.cpp
|
64
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/FormatInformationTest.cpp.o: ../core/tests/src/qrcode/FormatInformationTest.h
|
65
|
+
|
66
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/Exception.h
|
67
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/ReaderException.h
|
68
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/ZXing.h
|
69
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/common/Array.h
|
70
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/common/BitArray.h
|
71
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/common/BitMatrix.h
|
72
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/common/Counted.h
|
73
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
74
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
75
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/src/zxing/qrcode/Version.h
|
76
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/tests/src/qrcode/VersionTest.cpp
|
77
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/VersionTest.cpp.o: ../core/tests/src/qrcode/VersionTest.h
|
78
|
+
|
79
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/Exception.h
|
80
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/ZXing.h
|
81
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/common/Array.h
|
82
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/common/BitArray.h
|
83
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/common/BitMatrix.h
|
84
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/common/Counted.h
|
85
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
86
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/src/zxing/qrcode/decoder/DataMask.h
|
87
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/tests/src/qrcode/decoder/DataMaskTest.cpp
|
88
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/DataMaskTest.cpp.o: ../core/tests/src/qrcode/decoder/DataMaskTest.h
|
89
|
+
|
90
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/Exception.h
|
91
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/ReaderException.h
|
92
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/ZXing.h
|
93
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/common/Array.h
|
94
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/common/BitArray.h
|
95
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/common/BitMatrix.h
|
96
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/common/Counted.h
|
97
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/common/IllegalArgumentException.h
|
98
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/qrcode/ErrorCorrectionLevel.h
|
99
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/qrcode/Version.h
|
100
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/src/zxing/qrcode/decoder/Mode.h
|
101
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/tests/src/qrcode/decoder/ModeTest.cpp
|
102
|
+
CMakeFiles/testrunner.dir/core/tests/src/qrcode/decoder/ModeTest.cpp.o: ../core/tests/src/qrcode/decoder/ModeTest.h
|
103
|
+
|