Skip to content

Commit

Permalink
Merge pull request #764 from robotology/update-find-ipopt
Browse files Browse the repository at this point in the history
Synchronized FindIPOPT with latest YCM version
  • Loading branch information
traversaro authored Nov 17, 2020
2 parents 8202c39 + 53d531f commit c88754d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cmake/FindIPOPT.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ if(NOT WIN32)
set(IPOPT_DIR /usr CACHE PATH "Path to IPOPT build directory")
endif()

find_path(IPOPT_INCLUDE_DIRS NAMES IpIpoptApplication.hpp PATH_SUFFIXES coin PATHS ${IPOPT_DIR}/include/coin)
find_path(IPOPT_INCLUDE_DIRS NAMES IpIpoptApplication.hpp PATH_SUFFIXES coin coin-or PATHS ${IPOPT_DIR}/include/coin)

find_library(IPOPT_LIBRARIES ipopt ${IPOPT_DIR}/lib
${IPOPT_DIR}/lib/coin)
Expand Down Expand Up @@ -128,7 +128,7 @@ else()

set(IPOPT_DIR $ENV{IPOPT_DIR} CACHE PATH "Path to IPOPT build directory")

find_path(IPOPT_INCLUDE_DIRS NAMES IpIpoptApplication.hpp PATH_SUFFIXES coin PATHS ${IPOPT_DIR}/include/coin)
find_path(IPOPT_INCLUDE_DIRS NAMES IpIpoptApplication.hpp PATH_SUFFIXES coin coin-or PATHS ${IPOPT_DIR}/include/coin)

find_library(IPOPT_IPOPT_LIBRARY_RELEASE libipopt ${IPOPT_DIR}/lib
${IPOPT_DIR}/lib/coin)
Expand Down Expand Up @@ -207,7 +207,9 @@ else()
find_library(IPOPT_${_LIB}_LIBRARY_RELEASE ${_lib} ${_IPOPT_IPOPT_LIBRARY_DIR})
find_library(IPOPT_${_LIB}_LIBRARY_DEBUG ${_lib}d ${_IPOPT_IPOPT_LIBRARY_DIR})
select_library_configurations(IPOPT_${_LIB})
list(APPEND IPOPT_LIBRARIES ${IPOPT_${_LIB}_LIBRARY})
if(NOT "${IPOPT_${_LIB}_LIBRARY}" MATCHES "NOTFOUND$")
list(APPEND IPOPT_LIBRARIES ${IPOPT_${_LIB}_LIBRARY})
endif()
endforeach()
endif()
endif()
Expand Down

0 comments on commit c88754d

Please sign in to comment.