Warning, /graphics/digikam/project/bundles/3rdparty/ext_libgphoto2/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 # Script to build libgphoto for digiKam bundle.
0002 #
0003 # SPDX-FileCopyrightText: 2015-2024 by Gilles Caulier  <caulier dot gilles at gmail dot com>
0004 #
0005 # SPDX-License-Identifier: BSD-3-Clause
0006 #
0007 #
0008 
0009 SET(EXTPREFIX_libgphoto2 "${EXTPREFIX}")
0010 
0011 ExternalProject_Add(ext_libgphoto2
0012     DOWNLOAD_DIR ${EXTERNALS_DOWNLOAD_DIR}
0013 
0014     GIT_REPOSITORY https://github.com/gphoto/libgphoto2.git
0015     GIT_TAG v2.5.28
0016 
0017     INSTALL_DIR ${EXTPREFIX_libgphoto2}
0018     CONFIGURE_COMMAND <SOURCE_DIR>/configure --prefix ${EXTPREFIX_libgphoto2}
0019 
0020     UPDATE_COMMAND ""
0021     BUILD_IN_SOURCE 1
0022     ALWAYS 0
0023 )