mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
40 lines
1.1 KiB
CMake
40 lines
1.1 KiB
CMake
# Try to find Gphoto2 library, once done this will define:
|
|
#
|
|
# GPHOTO2_FOUND - system has Gphoto2
|
|
# GPHOTO2_INCLUDE_DIR - the Gphoto2 include directory
|
|
# GPHOTO2_LIBRARIES - the libraries needed to use Gphoto2
|
|
#
|
|
# Copyright (c) 2021 Ivailo Monev <xakepa10@gmail.com>
|
|
#
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
if(NOT WIN32)
|
|
include(FindPkgConfig)
|
|
pkg_check_modules(PC_GPHOTO2 QUIET libgphoto2)
|
|
|
|
set(GPHOTO2_INCLUDE_DIR ${PC_GPHOTO2_INCLUDE_DIRS})
|
|
set(GPHOTO2_LIBRARIES ${PC_GPHOTO2_LIBRARIES})
|
|
endif()
|
|
|
|
set(GPHOTO2_VERSION ${PC_GPHOTO2_VERSION})
|
|
|
|
if(NOT GPHOTO2_INCLUDE_DIR OR NOT GPHOTO2_LIBRARIES)
|
|
find_path(GPHOTO2_INCLUDE_DIR
|
|
NAMES gphoto2/gphoto2.h
|
|
HINTS $ENV{GPHOTO2DIR}/include
|
|
)
|
|
|
|
find_library(GPHOTO2_LIBRARIES
|
|
NAMES gphoto2
|
|
HINTS $ENV{GPHOTO2DIR}/lib
|
|
)
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Gphoto2
|
|
VERSION_VAR GPHOTO2_VERSION
|
|
REQUIRED_VARS GPHOTO2_LIBRARIES GPHOTO2_INCLUDE_DIR
|
|
)
|
|
|
|
mark_as_advanced(GPHOTO2_INCLUDE_DIR GPHOTO2_LIBRARIES)
|