Skip to content

Commit dfe6b32

Browse files
authored
Merge pull request #3277 from robotology/traversaro-patch-1
Permit to build yarp-rerun as an indipendent CMake project
2 parents a23df69 + ac9a68d commit dfe6b32

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/commands/yarpRerun/CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# SPDX-FileCopyrightText: 2025-2025 Istituto Italiano di Tecnologia (IIT)
22
# SPDX-License-Identifier: BSD-3-Clause
33

4+
if(NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION)
5+
cmake_minimum_required(VERSION 3.19)
6+
7+
project(yarp-rerun)
8+
9+
find_package(YARP REQUIRED)
10+
11+
include(GNUInstallDirs)
12+
endif()
13+
414
find_package(rerun_sdk QUIET)
515
if(NOT rerun_sdk_FOUND)
616
message(STATUS "rerun_sdk not found. Skipping yarpRerun.")

0 commit comments

Comments
 (0)