From 7be16e6e5cfd8e2481a470474f7e41e127e9eba3 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 10 Nov 2023 14:43:39 +0100 Subject: [PATCH] CMakeLists.txt: Fix missing parameter names VERSION must be indicated when passing a version string to project(). Also, LANGUAGES must be also be passed when the language name is not the only argument to project() (apart from the project name itself). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a6067c..854eb5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. cmake_minimum_required(VERSION 3.0) -project(dynstr C 0.1.0) +project(dynstr LANGUAGES C VERSION 0.1.0) add_library(${PROJECT_NAME} "dynstr.c") target_include_directories(${PROJECT_NAME} PUBLIC "include") install(TARGETS ${PROJECT_NAME})