mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Build mtxclient with Bundled Boost (#350)
* Build mtxclient with bundled Boost if requested. This commit ensures that mtxclient is built with the bundled version of Boost instead of a possibly-outdated system version when using USE_BUNDLED_BOOST. This resolves issue mujx/nheko#338.
This commit is contained in:
parent
1a3a9c836c
commit
7051d8025f
1 changed files with 6 additions and 0 deletions
6
deps/cmake/MatrixClient.cmake
vendored
6
deps/cmake/MatrixClient.cmake
vendored
|
@ -8,6 +8,11 @@ if(APPLE)
|
|||
set(PLATFORM_FLAGS "-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl")
|
||||
endif()
|
||||
|
||||
# Force to build with the bundled version of Boost. This is necessary because
|
||||
# if an outdated version of Boost is installed, then CMake will grab that
|
||||
# instead of the bundled version of Boost, like we wanted.
|
||||
set(BOOST_BUNDLE_ROOT "-DBOOST_ROOT=${DEPS_BUILD_DIR}/boost")
|
||||
|
||||
ExternalProject_Add(
|
||||
MatrixClient
|
||||
|
||||
|
@ -23,6 +28,7 @@ ExternalProject_Add(
|
|||
-DBUILD_LIB_TESTS=OFF
|
||||
-DBUILD_LIB_EXAMPLES=OFF
|
||||
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}
|
||||
${BOOST_BUNDLE_ROOT}
|
||||
${PLATFORM_FLAGS}
|
||||
${DEPS_BUILD_DIR}/mtxclient
|
||||
BUILD_COMMAND
|
||||
|
|
Loading…
Reference in a new issue