bdf2sfd

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

commit 292cfe00028a5f653d9fe0bf0651db80646f087b
parent b71ba7673edf69717f358d920317023b50da1d3e
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 24 Oct 2020 12:06:55 +0200

Do not hardcode CMAKE_BUILD_TYPE to "Release" in CMakeLists.txt.

Diffstat:
MCMakeLists.txt | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -4,7 +4,7 @@ # https://github.com/fcambus/bdf2sfd # # Created: 2019-11-21 -# Last Updated: 2020-10-10 +# Last Updated: 2020-10-24 # # bdf2sfd is released under the BSD 2-Clause license # See LICENSE file for details @@ -41,7 +41,6 @@ endif(ENABLE_SECCOMP) # Additional include directories for compat functions + dependencies include_directories("compat") -set(CMAKE_BUILD_TYPE Release) set(SRC src/bdf2sfd.c src/header.c src/parse.c src/polygon.c) if(NOT HAVE_PLEDGE)