subsurface/cmake/Modules/HandleFindLibDiveComputer.cmake

8 lines
220 B
CMake
Raw Permalink Normal View History

if(LIBDC_FROM_PKGCONFIG)
pkg_config_library(LIBDC libdivecomputer REQUIRED)
set(LIBDIVECOMPUTER_LIBRARIES "")
else()
find_package(Libdivecomputer REQUIRED)
include_directories(${LIBDIVECOMPUTER_INCLUDE_DIR})
endif()