From cc733dba0f1dbd1efd39dfd5b4433342937c5dde Mon Sep 17 00:00:00 2001 From: Tomas Winkler Date: Mon, 14 Oct 2024 22:14:46 +0300 Subject: [PATCH] safestringlib: cmake: do not probe for C++ Restrict the project to C language, do not probe for C++ compiler. Signed-off-by: Tomas Winkler --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 56bbf78..0cdd3ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,7 @@ include(version.cmake) project(safestring VERSION ${SAFEC_VERSION_STRING} DESCRIPTION "Safe C string library" + LANGUAGES C ) option(BUILD_UNITTESTS "Build also project unit-tests" OFF)