From 19e2ce69100112dcc143232f4f78af06d9f755ce Mon Sep 17 00:00:00 2001 From: slz Date: Wed, 29 Jul 2026 17:06:52 +0800 Subject: [PATCH] fix: require CMake 3.13 for link commands The package uses add_link_options() and target_link_directories(), which were both introduced in CMake 3.13. --- orbbec_camera/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orbbec_camera/CMakeLists.txt b/orbbec_camera/CMakeLists.txt index 334401c2..d3e514fc 100644 --- a/orbbec_camera/CMakeLists.txt +++ b/orbbec_camera/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 3.10) +cmake_minimum_required(VERSION 3.13) project(orbbec_camera) set(CMAKE_CXX_STANDARD 17)