logswan

Fast Web log analyzer using probabilistic data structures
Log | Files | Refs | README | LICENSE

commit 3f2d91ed41efbfb7b42053ea607980b7524d5225
parent a745be7a8019c6e23ab62636c8c9ecf19da996a9
Author: Frederic Cambus <fred@statdns.com>
Date:   Sat, 24 Oct 2020 12:06:42 +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.logswan.org # # Created: 2015-05-31 -# Last Updated: 2020-08-28 +# Last Updated: 2020-10-24 # # Logswan is released under the BSD 2-Clause license # See LICENSE file for details @@ -52,7 +52,6 @@ find_path(JANSSON_INCLUDE_DIRS jansson.h) find_library(JANSSON_LIBRARIES NAMES jansson REQUIRED) include_directories(${JANSSON_INCLUDE_DIRS}) -set(CMAKE_BUILD_TYPE Release) set(DEPS deps/hll/hll.c deps/MurmurHash3/MurmurHash3.c) set(SRC src/logswan.c src/config.c src/continents.c src/countries.c src/output.c src/parse.c)