mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
build-system: try to find libdivecomputer on LGTM
On LGTM we end up installing in /opt/out. Also, fix a silly error in the existing code - don't look for libraries in include directories. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
7b1d5c5b8d
commit
2b5d818d35
1 changed files with 4 additions and 2 deletions
|
@ -22,6 +22,7 @@ HINTS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/../libdivecomputer/include/
|
||||
/usr/local/include
|
||||
/usr/include
|
||||
/opt/out/include
|
||||
)
|
||||
|
||||
FIND_LIBRARY( LIBDIVECOMPUTER_LIBRARIES
|
||||
|
@ -31,8 +32,9 @@ NAMES
|
|||
HINTS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../install-root/lib
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../libdivecomputer/src/.libs/
|
||||
/usr/local/include
|
||||
/usr/include
|
||||
/usr/local/lib
|
||||
/usr/lib
|
||||
/opt/out/lib
|
||||
)
|
||||
|
||||
INCLUDE( FindPackageHandleStandardArgs )
|
||||
|
|
Loading…
Reference in a new issue