Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/commands/yarpRerun/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# SPDX-FileCopyrightText: 2025-2025 Istituto Italiano di Tecnologia (IIT)
# SPDX-License-Identifier: BSD-3-Clause

if(NOT DEFINED CMAKE_MINIMUM_REQUIRED_VERSION)
cmake_minimum_required(VERSION 3.19)

project(yarp-rerun)

find_package(YARP REQUIRED)

include(GNUInstallDirs)
endif()

find_package(rerun_sdk QUIET)
if(NOT rerun_sdk_FOUND)
message(STATUS "rerun_sdk not found. Skipping yarpRerun.")
Expand Down
Loading