mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
backend
tests
cmake
data
tools
CMakeLists.txt
README
test_channel.c
test_common.c
test_composite.c
test_dmatrix.c
test_eci.c
test_gb2312.c
test_gb2312_tab.h
test_gridmtx.c
test_gs1.c
test_imail.c
test_library.c
test_mailmark.c
test_maxicode.c
test_postal.c
test_qr.c
test_raster.c
test_rss.c
test_sjis.c
test_sjis_tab.h
test_upcean.c
test_vector.c
testcommon.c
testcommon.h
tools
2of5.c
CMakeLists.txt
DEVELOPER
LICENSE
Makefile.mingw
auspost.c
aztec.c
aztec.h
bmp.c
bmp.h
codablock.c
code.c
code1.c
code1.h
code128.c
code16k.c
code49.c
code49.h
common.c
common.h
composite.c
composite.h
dllversion.c
dmatrix.c
dmatrix.h
dotcode.c
eci.c
eci.h
emf.c
emf.h
font.h
gb18030.h
gb2312.c
gb2312.h
general_field.c
general_field.h
gif.c
gridmtx.c
gridmtx.h
gs1.c
gs1.h
hanxin.c
hanxin.h
imail.c
large.c
large.h
library.c
libzint.rc
mailmark.c
maxicode.c
maxicode.h
medical.c
ms_stdint.h
pcx.c
pcx.h
pdf417.c
pdf417.h
plessey.c
png.c
postal.c
ps.c
qr.c
qr.h
raster.c
reedsol.c
reedsol.h
rss.c
rss.h
sjis.c
sjis.h
stdint_msvc.h
svg.c
telepen.c
tif.c
tif.h
ultra.c
upcean.c
vector.c
zint.h
backend_qt
backend_tcl
cmake
debian
docs
frontend
frontend_qt
win32
.editorconfig
.gitignore
CMakeLists.txt
COPYING
README
SetPaths.cmake
TODO
cmake_uninstall.cmake.in
readme-cmake
zint-qt.desktop
zint.nsi
zint.png
zint.spec
Zint backend test suite ----------------------- To make: cd <project-dir> cd backend/tests mkdir build cd build cmake .. make To run all tests: make test To run individual tests, eg: ./test_common ./test_vector To make with gcc sanitize, first set for libzint and make: cd <project-dir> cd build cmake -DZINT_SANITIZE:BOOL=1 .. make && sudo make install Then set for tests and make: cd <project-dir> cd backend/tests/build cmake -DZINT_SANITIZE:BOOL=1 .. make Similarly to make with gcc debug: cd <project-dir> cd build cmake -DZINT_DEBUG:BOOL=1 .. make && sudo make install cd <project-dir> cd backend/tests/build cmake -DZINT_DEBUG:BOOL=1 .. make To undo sanitize/debug, remake each after setting: cmake -DZINT_SANITIZE:BOOL=0 .. cmake -DZINT_DEBUG:BOOL=0 .. Note that sanitize is not safe to use in production, as it's a security risk.