From 8029274fec8a5bf45f87e86dfac5bb85d817182b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Lind=C3=A9n?= <_@robinlinden.eu> Date: Mon, 8 Jun 2020 21:08:47 +0200 Subject: [PATCH] Allow building without a C++ compiler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robin Lindén <_@robinlinden.eu> --- CMakeLists.txt | 2 +- ports/freertos-posix/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b999c04..5995819 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause # cmake_minimum_required(VERSION 3.7) -project(CycloneDDS VERSION 0.7.0) +project(CycloneDDS VERSION 0.7.0 LANGUAGES C) # Set a default build type if none was specified set(default_build_type "RelWithDebInfo") diff --git a/ports/freertos-posix/CMakeLists.txt b/ports/freertos-posix/CMakeLists.txt index 0c161ce..972e779 100644 --- a/ports/freertos-posix/CMakeLists.txt +++ b/ports/freertos-posix/CMakeLists.txt @@ -10,7 +10,7 @@ # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause # cmake_minimum_required(VERSION 3.5) -project(FreeRTOS-Sim VERSION 10.0.2.0) +project(FreeRTOS-Sim VERSION 10.0.2.0 LANGUAGES C) include(GNUInstallDirs)