From a58f22ac05b126222dc5aec64f0c4a8d2d260d18 Mon Sep 17 00:00:00 2001 From: Marco Boneberger Date: Mon, 18 Jul 2022 14:15:11 +0200 Subject: [PATCH 1/3] update cmake minimum version to 3.0.2 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8903fb1..401c895 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.8.3) +cmake_minimum_required(VERSION 3.0.2) add_library(libfranka-common INTERFACE) set_target_properties(libfranka-common PROPERTIES From cc995a12d5b56397964e2e19732f556addb2e906 Mon Sep 17 00:00:00 2001 From: Andreas Gassner Date: Wed, 13 Sep 2023 15:52:11 +0200 Subject: [PATCH 2/3] updated cmake to populate libfranka-common target correctly --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 401c895..562b605 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ cmake_minimum_required(VERSION 3.0.2) add_library(libfranka-common INTERFACE) -set_target_properties(libfranka-common PROPERTIES - INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_CURRENT_LIST_DIR}/include +target_include_directories(libfranka-common INTERFACE + $ + $ ) From 01ea5af54c72113ace8c244d5c4442fc479795c6 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Fri, 10 Oct 2025 10:21:00 +0200 Subject: [PATCH 3/3] Drop cmake_minimum_required This folder is just used as a submodule within the libfranka cmake project and thus should inherit the cmake version from there. --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 562b605..3dd95dc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,5 @@ -cmake_minimum_required(VERSION 3.0.2) - add_library(libfranka-common INTERFACE) -target_include_directories(libfranka-common INTERFACE +target_include_directories(libfranka-common INTERFACE $ $ )