statzone

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

commit a67537952051707697ccbd4e2deb42304988d442
parent d37ff054c2a20abb0e6eb2d87cb6c3e3f452c6ee
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 10 Oct 2020 21:03:10 +0200

Set CMAKE_BUILD_TYPE to "Release" in CMakeLists.txt.

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

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -4,7 +4,7 @@ # https://www.statdns.com # # Created: 2012-02-13 -# Last Updated: 2020-06-09 +# Last Updated: 2020-10-10 # # StatZone is released under the BSD 2-Clause license # See LICENSE file for details. @@ -44,6 +44,7 @@ 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)