logswan

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

commit 5368c0c0ed4f35216acfb32f20ccaa5809cb1f09
parent 35a087f643f065a66a50eef5aadb1027a4b7f72e
Author: Frederic Cambus <fred@statdns.com>
Date:   Sun,  4 Apr 2021 11:57:37 +0200

Formatting fixes in CMakeLists.txt.

Diffstat:
MCMakeLists.txt | 9++++-----
1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt @@ -10,7 +10,7 @@ # See LICENSE file for details # -cmake_minimum_required (VERSION 2.8.12) +cmake_minimum_required(VERSION 2.8.12) project(logswan C) @@ -18,8 +18,7 @@ include(CheckFunctionExists) include(GNUInstallDirs) # Conditional build options -set(ENABLE_SECCOMP 0 - CACHE BOOL "Enable building with seccomp") +set(ENABLE_SECCOMP 0 CACHE BOOL "Enable building with seccomp") # Check if system has pledge and strtonum list(APPEND CMAKE_REQUIRED_DEFINITIONS -D_OPENBSD_SOURCE) @@ -57,11 +56,11 @@ set(SRC src/logswan.c src/config.c src/continents.c src/countries.c src/output.c src/parse.c) if(NOT HAVE_PLEDGE) - set (SRC ${SRC} compat/pledge.c) + set(SRC ${SRC} compat/pledge.c) endif() if(NOT HAVE_STRTONUM) - set (SRC ${SRC} compat/strtonum.c) + set(SRC ${SRC} compat/strtonum.c) endif() set(GEOIP2DIR ${CMAKE_INSTALL_PREFIX}/share/dbip