Warning, /graphics/digikam/project/bundles/3rdparty/ext_boost/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 # Script to build Boost 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(PREFIX_ext_boost "${EXTPREFIX}")
0010
0011 ExternalProject_Add( ext_boost
0012 DOWNLOAD_DIR ${EXTERNALS_DOWNLOAD_DIR}
0013
0014 GIT_REPOSITORY https://github.com/boostorg/boost.git
0015 GIT_TAG boost-1.83.0
0016
0017 CONFIGURE_COMMAND <SOURCE_DIR>/bootstrap.sh --prefix=${PREFIX_ext_boost} --with-libraries=system
0018 BUILD_COMMAND <SOURCE_DIR>/b2 install
0019 INSTALL_COMMAND ""
0020 INSTALL_DIR ${PREFIX_ext_boost}
0021
0022 UPDATE_COMMAND ""
0023 ALWAYS 0
0024 BUILD_IN_SOURCE 1
0025 )