mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
5472325ffe
- Added experimental QR edge detector. - Modified pattern finder tolerance levels, as in the Java code. - Adjusted the local block binarizer slightly. - Added a simple example application. - Modified MagickBitmapSource to compute the luminance in the same way as the Java BufferedImageLuminanceSource. git-svn-id: https://zxing.googlecode.com/svn/trunk@1144 59b500cc-1b3d-0410-9834-0bbf25fbcc57
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
Decider('MD5')
|
|
|
|
env = Environment()
|
|
|
|
debug = True
|
|
compile_options = {}
|
|
flags = []
|
|
if debug:
|
|
#compile_options['CPPDEFINES'] = "-DDEBUG"
|
|
flags.append("-O0 -g3 -Wall")
|
|
compile_options['CXXFLAGS'] = ' '.join(flags)
|
|
|
|
|
|
def all_files(dir, ext='.cpp', level=5):
|
|
files = []
|
|
for i in range(1, level):
|
|
files += Glob(dir + ('/*' * i) + ext)
|
|
return files
|
|
|
|
|
|
|
|
magick_include = ['/usr/include/ImageMagick/']
|
|
magick_libs = ['Magick++', 'MagickWand', 'MagickCore']
|
|
|
|
cppunit_libs = ['cppunit']
|
|
|
|
zxing_files = all_files('core/src')
|
|
|
|
zxing_include = ['core/src']
|
|
zxing_libs = env.Library('zxing', source=zxing_files, CPPPATH=zxing_include, **compile_options)
|
|
|
|
app_files = ['magick/src/MagickBitmapSource.cpp', 'magick/src/main.cpp']
|
|
app_executable = env.Program('zxing', app_files, CPPPATH=magick_include + zxing_include, LIBS=magick_libs + zxing_libs, **compile_options)
|
|
|
|
test_files = all_files('core/tests/src')
|
|
test_executable = env.Program('testrunner', test_files, CPPPATH=zxing_include, LIBS=zxing_libs + cppunit_libs, **compile_options)
|
|
|
|
|
|
Alias('lib', zxing_libs)
|
|
Alias('tests', test_executable)
|
|
Alias('zxing', app_executable)
|
|
|