From 61f9440dfeacad517965451773371aca0332d700 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Tue, 5 Jan 2021 23:08:53 +0100 Subject: [PATCH] CMakeLists.txt: project only contains C code Make sure CMake doesn't check for a C++ compiler when it's not needed, as open62541 is in C. Signed-off-by: Thomas Petazzoni --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 94ceb127..acc41ab2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.0...3.12) -project(open62541) +project(open62541 C) # set(CMAKE_VERBOSE_MAKEFILE ON) if(${CMAKE_VERSION} VERSION_LESS 3.12) cmake_policy(VERSION ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}) -- 2.29.2