From 9a49f53e7b95af0449294ce7ee9e63a62e835643 Mon Sep 17 00:00:00 2001 From: oliviasculley Date: Mon, 4 Dec 2023 09:35:23 -0500 Subject: [PATCH] declare libccd as a C project --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 35bf430..5258ee8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,12 +1,10 @@ -cmake_minimum_required(VERSION 2.8.11) +cmake_minimum_required(VERSION 3.12.0) if(POLICY CMP0042) cmake_policy(SET CMP0042 NEW) endif() -# Can not explicitly declared the software as C in project command due to bug: -# https://gitlab.kitware.com/cmake/cmake/issues/16967 -project(libccd) +project(libccd C) set(CCD_VERSION_MAJOR 2) set(CCD_VERSION_MINOR 0)