Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update OSQP to 0.6.3 #405

Merged
merged 1 commit into from
May 30, 2024
Merged
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
4 changes: 2 additions & 2 deletions trajopt_ext/osqp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ project(${pkg_extracted_name} VERSION ${pkg_extracted_version} LANGUAGES CXX)
find_package(osqp QUIET)

if(NOT ${osqp_FOUND})
message(WARNING "No valid OSQP version found. Cloning OSQP 0.6.0 into build directory")
message(WARNING "No valid OSQP version found. Cloning OSQP 0.6.3 into build directory")

include(ExternalProject)

ExternalProject_Add(
osqp
GIT_REPOSITORY https://github.com/oxfordcontrol/osqp
GIT_TAG v0.6.2
GIT_TAG v0.6.3
SOURCE_DIR ${CMAKE_BINARY_DIR}-src
BINARY_DIR ${CMAKE_BINARY_DIR}-build
PATCH_COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_SOURCE_DIR}/patch_osqp.cmake
Expand Down
Loading