From 302184f3837ca8a7c697855511dbf0a70554dde8 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Sat, 1 Mar 2025 10:51:12 +0100 Subject: [PATCH] CMakeLists.txt: remove unneeded spaces Signed-off-by: Yegor Yefremov --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 236fba0..528a8d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,9 +4,9 @@ project(can-utils LANGUAGES C) message(STATUS "CMake version: ${CMAKE_VERSION}") -include (CheckFunctionExists) -include (CheckSymbolExists) -include (GNUInstallDirs) +include(CheckFunctionExists) +include(CheckSymbolExists) +include(GNUInstallDirs) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Release) @@ -32,8 +32,8 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DCLOCK_TAI=11") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DSO_TXTIME=61") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DSCM_TXTIME=SO_TXTIME") -include_directories (.) -include_directories (./include) +include_directories(.) +include_directories(./include) check_function_exists(fork HAVE_FORK)