Skip to content

Commit

Permalink
fixed cmake helpers for release v1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pattacini committed Feb 21, 2020
1 parent 8464b10 commit 7ee911a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/template/icub-config-build-tree.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (NOT ICUB_FOUND)
set(_temp_yarp_libs ${YARP_LIBRARIES})
endif()

find_package(YARP 3.3.0 REQUIRED COMPONENTS os conf sig dev math gsl)
find_package(YARP 3.3.2 REQUIRED COMPONENTS os conf sig dev math gsl)

include("@CMAKE_BINARY_DIR@/@EXPORT_INCLUDE_FILE@")
include("@CMAKE_BINARY_DIR@/@EXPORT_CONFIG_FILE@")
Expand Down
2 changes: 1 addition & 1 deletion conf/template/icub-config-install.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (NOT ICUB_FOUND)
set(_temp_yarp_libs ${YARP_LIBRARIES})
endif()

find_package(YARP 3.3.0 REQUIRED COMPONENTS os conf sig dev math gsl)
find_package(YARP 3.3.2 REQUIRED COMPONENTS os conf sig dev math gsl)

#set(ICUB_INCLUDE_DIRS "@ICUB_INCLUDE_DIRS@" CACHE INTERNAL "Include directories needed for iCub")
set(ICUB_MODULE_PATH "@ICUB_MODULE_PATH@" CACHE INTERNAL "iCub cmake scripts directory")
Expand Down

2 comments on commit 7ee911a

@traversaro
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably needs to be a CMake variables so we can substitute it using @VARIABLE_NAME@.

@pattacini
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in fab8940.

Please sign in to comment.