From e2b8832af4b1e5b300a1397292ee0b84d881bc11 Mon Sep 17 00:00:00 2001 From: Thomas Devoogdt Date: Tue, 25 Apr 2023 14:18:22 +0200 Subject: [PATCH] lib: msgpack: CMakeLists.txt: CMakeLists.txt: fix build without C++ msgpack is written in c, so only enforce a c compiler upstream: https://github.com/msgpack/msgpack-c/pull/1055 Signed-off-by: Thomas Devoogdt --- lib/msgpack-c/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msgpack-c/CMakeLists.txt b/lib/msgpack-c/CMakeLists.txt index 810ad609ab7..ffbbc5ddbb0 100644 --- a/lib/msgpack-c/CMakeLists.txt +++ b/lib/msgpack-c/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 2.8) -project(msgpack-c) +project(msgpack-c C) set(src src/objectc.c