statzone

DNS zone file analyzer targeted at TLD zones
Log | Files | Refs | README | LICENSE

commit 10936d4339bce4f7d967d8bbc9fd1029f7dc12ec
parent 88c326fcfec7570076d517f7e27d1c2104ea6e43
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 24 Oct 2020 12:06:28 +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://www.statdns.com # # Created: 2012-02-13 -# Last Updated: 2020-10-10 +# Last Updated: 2020-10-24 # # StatZone is released under the BSD 2-Clause license # See LICENSE file for details. @@ -44,7 +44,6 @@ include_directories("compat") find_path(UTHASH_INCLUDE_DIRS uthash.h) include_directories(${UTHASH_INCLUDE_DIRS}) -set(CMAKE_BUILD_TYPE Release) set(SRC src/statzone.c src/strtolower.c) if(NOT HAVE_PLEDGE)