Skip to content
Open
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
5 changes: 5 additions & 0 deletions kortex_api/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ include(FetchContent)

project(kortex_api)

# Timestamp extracted archives at extraction time so a URL change forces a rebuild.
if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()

#Future:
# convert API_URL components from CMAKE_SYSTEM variables.
# The kinova artifactory server artifacts have slightly different expectations and they need some transformations
Expand Down
5 changes: 5 additions & 0 deletions kortex_driver/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ include(FetchContent)

project(kortex_driver)

# Timestamp extracted archives at extraction time so a URL change forces a rebuild.
if(POLICY CMP0135)
cmake_policy(SET CMP0135 NEW)
endif()

# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
Expand Down
Loading