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

Updates the findripe cmake file to search for the .so file #43

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Updates the findripe cmake file to search for the .so file
  • Loading branch information
ignogueiras committed Dec 19, 2023
commit db1cf2a9396ff3b822ccd938ceff8d2b4225e190
4 changes: 2 additions & 2 deletions cmake/FindRipe.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if (RIPE_USE_STATIC_LIBS)
else()
message ("-- Ripe: Dynamic linking")
find_library(RIPE_LIBRARY
NAMES libripe.dylib
NAMES libripe.dylib libripe.so
HINTS "${CMAKE_PREFIX_PATH}/lib"
)
endif()
Expand All @@ -36,4 +36,4 @@ message ("-- Ripe: Include: " ${RIPE_INCLUDE_DIR} ", Binary: " ${RIPE_LIBRARY})

include(FindPackageHandleStandardArgs)

find_package_handle_standard_args(Ripe REQUIRED_VARS RIPE_INCLUDE_DIR RIPE_LIBRARY)
find_package_handle_standard_args(Ripe REQUIRED_VARS RIPE_INCLUDE_DIR RIPE_LIBRARY)
Loading