Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/rolling-win-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-ros-tooling-win-build.yml@master
with:
ros_distro: rolling
pixi_dependencies: jinja2 compilers range-v3
pixi_dependencies: jinja2 compilers cpp-expected range-v3
ninja_packages: rsl
target_cmake_args: -DRSL_BUILD_TESTING=ON
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ find_package(Eigen3 REQUIRED CONFIG)
find_package(fmt REQUIRED)
find_package(rclcpp REQUIRED)
find_package(tcb_span REQUIRED)
find_package(tl_expected REQUIRED)
find_package(tl-expected REQUIRED)

option(RSL_ENABLE_WARNINGS "Enable compiler warnings" OFF)
if(RSL_ENABLE_WARNINGS AND CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
Expand All @@ -32,7 +32,7 @@ target_link_libraries(rsl PUBLIC
fmt::fmt
rclcpp::rclcpp
tcb_span::tcb_span
tl_expected::tl_expected
tl::expected
)
set_target_properties(rsl PROPERTIES CXX_VISIBILITY_PRESET hidden VISIBILITY_INLINES_HIDDEN YES)
generate_export_header(rsl EXPORT_FILE_NAME include/rsl/export.hpp)
Expand Down
2 changes: 1 addition & 1 deletion cmake/rsl-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ find_dependency(Eigen3 CONFIG)
find_dependency(fmt)
find_dependency(rclcpp)
find_dependency(tcb_span)
find_dependency(tl_expected)
find_dependency(tl-expected)

include(${CMAKE_CURRENT_LIST_DIR}/rsl-targets.cmake)

Expand Down
2 changes: 1 addition & 1 deletion include/rsl/monad.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <tl_expected/expected.hpp>
#include <tl/expected.hpp>

#include <optional>

Expand Down
2 changes: 1 addition & 1 deletion include/rsl/parameter_validators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include <rcl_interfaces/msg/set_parameters_result.hpp>
#include <rclcpp/parameter.hpp>
#include <tl_expected/expected.hpp>
#include <tl/expected.hpp>

#include <fmt/ranges.h>
#include <type_traits>
Expand Down
2 changes: 1 addition & 1 deletion include/rsl/try.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <tl_expected/expected.hpp>
#include <tl/expected.hpp>

/** @file */

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<depend>fmt</depend>
<depend>rclcpp</depend>
<depend>tcb_span</depend>
<depend>tl_expected</depend>
<depend>libexpected-dev</depend>

<test_depend>ament_cmake_ros</test_depend>
<test_depend>clang-tidy</test_depend>
Expand Down
Loading