Skip to content
Snippets Groups Projects

Resolve "Change destination of libxxx.so for WOLF and dependencies"

2 files
+ 14
105
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -12,7 +12,7 @@ ENDIF(wolfgnss_INCLUDE_DIRS)
FIND_LIBRARY(
wolfgnss_LIBRARIES
NAMES libwolfgnss.so
PATHS /usr/local/lib/iri-algorithms)
PATHS /usr/local/lib)
IF(wolfgnss_LIBRARIES)
MESSAGE("Found gnss lib: ${wolfgnss_LIBRARIES}")
ELSE(wolfgnss_LIBRARIES)
@@ -80,4 +80,9 @@ if(NOT wolf_FOUND)
list(REVERSE wolfgnss_LIBRARIES)
list(APPEND wolfgnss_LIBRARIES ${wolfcore_LIBRARIES})
list(REVERSE wolfgnss_LIBRARIES)
endif()
\ No newline at end of file
endif()
# provide both INCLUDE_DIR and INCLUDE_DIRS
SET(wolfgnss_INCLUDE_DIR ${wolfgnss_INCLUDE_DIRS})
# provide both LIBRARY and LIBRARIES
SET(wolfgnss_LIBRARY ${wolfgnss_LIBRARIES})
\ No newline at end of file
Loading