Allow building without a C++ compiler

Signed-off-by: Robin Lindén <_@robinlinden.eu>
This commit is contained in:
Robin Lindén 2020-06-08 21:08:47 +02:00 committed by Jeroen Koekkoek
parent c67f8bc73c
commit 8029274fec
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
# #
cmake_minimum_required(VERSION 3.7) 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 a default build type if none was specified
set(default_build_type "RelWithDebInfo") set(default_build_type "RelWithDebInfo")

View file

@ -10,7 +10,7 @@
# SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause # SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
# #
cmake_minimum_required(VERSION 3.5) 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) include(GNUInstallDirs)