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:
Dirk Hohndel 2019-03-16 09:07:30 -07:00
parent 7b1d5c5b8d
commit 2b5d818d35

View file

@ -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 )