Skip to content

Commit e400e2b

Browse files
authored
upgrade versions for sophus and TBB to avoid old cmake version errors (#456)
* upgrade versions for sophus and TBB to avoid old cmake version errors * also upgrade version for tsl-robin
1 parent 1bd7e41 commit e400e2b

File tree

4 files changed

+3
-18
lines changed

4 files changed

+3
-18
lines changed

cpp/kiss_icp/3rdparty/sophus/sophus.cmake

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,5 @@ set(SOPHUS_USE_BASIC_LOGGING ON CACHE BOOL "Don't use fmt for Sophus libraru")
2525
set(BUILD_SOPHUS_TESTS OFF CACHE BOOL "Don't build Sophus tests")
2626
set(BUILD_SOPHUS_EXAMPLES OFF CACHE BOOL "Don't build Sophus Examples")
2727

28-
FetchContent_Declare(sophus SYSTEM URL https://github.com/strasdat/Sophus/archive/refs/tags/1.22.10.tar.gz
29-
PATCH_COMMAND patch -p1 < ${CMAKE_CURRENT_LIST_DIR}/sophus.patch UPDATE_DISCONNECTED 1)
30-
28+
FetchContent_Declare(sophus SYSTEM URL https://github.com/strasdat/Sophus/archive/refs/tags/1.24.6.tar.gz)
3129
FetchContent_MakeAvailable(sophus)

cpp/kiss_icp/3rdparty/sophus/sophus.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.

cpp/kiss_icp/3rdparty/tbb/tbb.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ option(TBB_STRICT OFF)
2727
option(TBB_TEST OFF)
2828

2929
include(FetchContent)
30-
FetchContent_Declare(tbb URL https://github.com/oneapi-src/oneTBB/archive/refs/tags/v2021.8.0.tar.gz)
30+
FetchContent_Declare(tbb URL https://github.com/uxlfoundation/oneTBB/archive/refs/tags/v2022.1.0.tar.gz)
3131
FetchContent_GetProperties(tbb)
3232
if(NOT tbb_POPULATED)
3333
FetchContent_Populate(tbb)

cpp/kiss_icp/3rdparty/tsl_robin/tsl_robin.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2222
# SOFTWARE.
2323
include(FetchContent)
24-
FetchContent_Declare(tessil SYSTEM URL https://github.com/Tessil/robin-map/archive/refs/tags/v1.2.1.tar.gz)
24+
FetchContent_Declare(tessil SYSTEM URL https://github.com/Tessil/robin-map/archive/refs/tags/v1.4.0.tar.gz)
2525
FetchContent_MakeAvailable(tessil)

0 commit comments

Comments
 (0)