bdf2sfd

BDF to SFD converter, allowing to vectorize bitmap fonts
Log | Files | Refs | README | LICENSE

commit d87c78e9b76984796307647210ea200698b03aaf
parent 0e193589fec69609f0612a7ece52bd97f44f0741
Author: Frederic Cambus <fred@statdns.com>
Date:   Mon, 30 Mar 2020 22:24:35 +0200

Add tests for different BDF sizes, using stripped down versions of Spleen.

Diffstat:
MCMakeLists.txt | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -4,7 +4,7 @@ # https://github.com/fcambus/bdf2sfd # # Created: 2019-11-21 -# Last Updated: 2020-02-08 +# Last Updated: 2020-03-30 # # bdf2sfd is released under the BSD 2-Clause license # See LICENSE file for details @@ -44,3 +44,7 @@ install(FILES bdf2sfd.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1/) enable_testing() add_test(bdf2sfd bdf2sfd) +add_test(8x16 bdf2sfd ${PROJECT_SOURCE_DIR}/tests/spleen-8x16.bdf) +add_test(12x24 bdf2sfd ${PROJECT_SOURCE_DIR}/tests/spleen-12x24.bdf) +add_test(16x32 bdf2sfd ${PROJECT_SOURCE_DIR}/tests/spleen-16x32.bdf) +add_test(32x64 bdf2sfd ${PROJECT_SOURCE_DIR}/tests/spleen-32x64.bdf)