vcpkg/ports/vcpkg-boost/boost-install.cmake
Alexander Neumann bcf3d00d21
[Boost] use cmake build (#32309)
~~arm64-windows: boost-context builds are blocked by a cmake bug (see
https://gitlab.kitware.com/cmake/cmake/-/issues/24317)~~

closes #32274
closes https://github.com/Neumann-A/my-vcpkg-triplets/issues/5

Questions:
- [x] ~~Move cmake files to `share/cmake/<name>` ?~~ Not doing it
because it is just using `vcpkg_cmake_config_fixup()`
- [x] Fix weak dependencies (uwp|emscripten|android|arm)?
- [x] Fix library names on !x64 (currently hardcoded to x64 or x86;
failure in aricpp since it forces FindBoost module mode.)
- [x] ~~Fix arm64-windows boost-context builds -> requires CMake
(3.19.2?) update due to bug how the assembler is invoked.~~ (-> CI
baseline for now)

TODO:
- [x] adjust generate ports script
- [x] #37457

---------

Co-authored-by: Cheney-Wang <850426846@qq.com>
2024-04-29 15:27:41 -04:00

98 lines
4.0 KiB
CMake

include_guard(GLOBAL)
function(boost_configure_and_install)
cmake_parse_arguments(PARSE_ARGV 0 "arg" "" "SOURCE_PATH" "OPTIONS")
string(REPLACE "-" "_" boost_lib_name "${PORT}")
string(REPLACE "boost_" "" boost_lib_name "${boost_lib_name}")
set(boost_lib_name_config "${boost_lib_name}")
set(headers_only OFF)
if(NOT EXISTS "${arg_SOURCE_PATH}/src") # regex|system|math are header only and only install libs due to compat
set(headers_only ON)
set(VCPKG_BUILD_TYPE release)
endif()
set(boost_lib_path "libs/${boost_lib_name}")
if(boost_lib_name MATCHES "numeric")
string(REPLACE "numeric_" "numeric/" boost_lib_path "${boost_lib_path}")
string(REPLACE "numeric_" "numeric/" boost_lib_name "${boost_lib_name}")
elseif(PORT MATCHES "boost-(ublas|odeint|interval)")
set(boost_lib_name_config "numeric_${boost_lib_name}")
set(boost_lib_path "libs/numeric/${boost_lib_name}")
set(boost_lib_name "numeric/${boost_lib_name}")
endif()
if(NOT EXISTS "${arg_SOURCE_PATH}/libs") # Check for --editable workflow
set(target_path "${arg_SOURCE_PATH}/${boost_lib_path}")
cmake_path(GET target_path PARENT_PATH parent_path)
file(RENAME "${arg_SOURCE_PATH}/" "${arg_SOURCE_PATH}.tmp/")
file(MAKE_DIRECTORY "${parent_path}")
file(RENAME "${arg_SOURCE_PATH}.tmp/" "${target_path}")
endif()
file(WRITE "${arg_SOURCE_PATH}/CMakeLists.txt" " \
cmake_minimum_required(VERSION 3.25) \n\
\n\
project(Boost VERSION ${VERSION} LANGUAGES CXX) \n\
\n\
set(BOOST_SUPERPROJECT_VERSION \${PROJECT_VERSION}) \n\
set(BOOST_SUPERPROJECT_SOURCE_DIR \"\${PROJECT_SOURCE_DIR}\") \n\
\n\
list(APPEND CMAKE_MODULE_PATH \"${CURRENT_INSTALLED_DIR}/share/boost/cmake-build\") \n\
\n\
include(BoostRoot) \n\
")
if("${PORT}" MATCHES "boost-(mpi|graph-parallel|property-map-parallel)")
list(APPEND arg_OPTIONS -DBOOST_ENABLE_MPI=ON)
endif()
if("${PORT}" MATCHES "boost-(python|parameter-python)")
list(APPEND arg_OPTIONS -DBOOST_ENABLE_PYTHON=ON)
endif()
vcpkg_cmake_configure(
SOURCE_PATH "${arg_SOURCE_PATH}"
OPTIONS
-DBOOST_INCLUDE_LIBRARIES=${boost_lib_name}
-DBOOST_RUNTIME_LINK=${VCPKG_CRT_LINKAGE}
"-DBOOST_INSTALL_INCLUDE_SUBDIR="
"-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT="
${arg_OPTIONS}
)
vcpkg_cmake_install()
file(GLOB cmake_paths "${CURRENT_PACKAGES_DIR}/lib/cmake/*" LIST_DIRECTORIES true)
file(GLOB cmake_files "${CURRENT_PACKAGES_DIR}/lib/cmake/*" LIST_DIRECTORIES false)
list(REMOVE_ITEM cmake_paths "${cmake_files}" "${CURRENT_PACKAGES_DIR}/lib/cmake/boost_${boost_lib_name_config}-${VERSION}")
foreach(config_path IN LISTS cmake_paths)
string(REPLACE "-${VERSION}" "" config_path "${config_path}")
string(REPLACE "${CURRENT_PACKAGES_DIR}/lib/cmake/" "" config_name "${config_path}")
vcpkg_cmake_config_fixup(PACKAGE_NAME ${config_name} CONFIG_PATH lib/cmake/${config_name}-${VERSION} DO_NOT_DELETE_PARENT_CONFIG_PATH)
endforeach()
if(NOT PORT MATCHES "boost-(stacktrace|test)")
vcpkg_cmake_config_fixup(PACKAGE_NAME boost_${boost_lib_name_config} CONFIG_PATH lib/cmake/boost_${boost_lib_name_config}-${VERSION})
else()
# These ports have no cmake config agreeing with the port name
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib/cmake" "${CURRENT_PACKAGES_DIR}/debug/lib/cmake")
endif()
if(headers_only)
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib" "${CURRENT_PACKAGES_DIR}/debug/lib")
endif()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share"
"${CURRENT_PACKAGES_DIR}/debug/include"
)
vcpkg_install_copyright(FILE_LIST "${CURRENT_INSTALLED_DIR}/share/boost-cmake/copyright")
# Install port specific usage
string(REPLACE "-" "_" PORT_UNDERSCORE "${PORT}")
string(REPLACE "boost_" "" BOOST_PORT_NAME "${PORT_UNDERSCORE}")
if(PORT MATCHES "boost-(ublas|odeint|interval)")
string(PREPEND BOOST_PORT_NAME "numeric_")
endif()
configure_file("${CURRENT_HOST_INSTALLED_DIR}/share/vcpkg-boost/usage.in" "${CURRENT_INSTALLED_DIR}/share/${PORT}/usage")
endfunction()