From 089444e957d66375fbf4678a65d5106c7349223a Mon Sep 17 00:00:00 2001 From: Manuel Bentele Date: Tue, 27 Oct 2020 07:23:38 +0100 Subject: Remove the build requirement for an unused C++ compiler This patch sets the programming languages of each CMake project to C. With this change, CMake does not search for an unused C++ compiler anymore. --- src/utils/libsmartcols/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/utils/libsmartcols/CMakeLists.txt') diff --git a/src/utils/libsmartcols/CMakeLists.txt b/src/utils/libsmartcols/CMakeLists.txt index dccb5e2..307f06d 100644 --- a/src/utils/libsmartcols/CMakeLists.txt +++ b/src/utils/libsmartcols/CMakeLists.txt @@ -1,7 +1,8 @@ cmake_minimum_required(VERSION 3.10) # set the project name -project(xloop-utils-libsmartcols) +project(xloop-utils-libsmartcols + LANGUAGES C) add_library(libsmartcols STATIC ${CMAKE_CURRENT_SOURCE_DIR}/src/buffer.c ${CMAKE_CURRENT_SOURCE_DIR}/src/calculate.c -- cgit v1.2.3-55-g7522