File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 33libpoco-dev
44libeigen3-dev
55libglfw3-dev
6+ libconsole-bridge-dev
7+ libtinyxml2-dev
Original file line number Diff line number Diff line change @@ -51,10 +51,14 @@ find_package(rcs REQUIRED)
5151
5252FetchContent_Declare (
5353 libfranka
54- GIT_REPOSITORY https://github.com/frankaemika /libfranka.git
55- GIT_TAG 0.15.0
54+ GIT_REPOSITORY https://github.com/frankarobotics /libfranka.git
55+ GIT_TAG 0.20.3
5656 GIT_PROGRESS TRUE
5757 EXCLUDE_FROM_ALL
58+ # Overwrite the version check script with our dummy script
59+ PATCH_COMMAND ${CMAKE_COMMAND} -E copy
60+ "${CMAKE_CURRENT_SOURCE_DIR} /cmake/SetVersionFromGit.cmake"
61+ "cmake/SetVersionFromGit.cmake"
5862)
5963FetchContent_Declare (pybind11
6064 GIT_REPOSITORY https://github.com/pybind/pybind11.git
Original file line number Diff line number Diff line change 1+ # This replaces the original libfranka function to bypass git errors
2+ function (set_version_from_git VERSION_VAR TAG_VAR )
3+ set (${VERSION_VAR} "" PARENT_SCOPE )
4+ set (${TAG_VAR} "" PARENT_SCOPE )
5+ message (STATUS "Patched libfranka to bypass git check" )
6+ endfunction ()
You can’t perform that action at this time.
0 commit comments