2021-03-31 01:17:02 +08:00
|
|
|
# QuickCppLib is composed of other third party libraries:
|
|
|
|
# <= quickcpplib
|
|
|
|
# <= byte-lite
|
|
|
|
# <= gsl-lite
|
|
|
|
# <= Optional
|
|
|
|
#
|
|
|
|
# byte-lite and gsl-lite are in vcpkg, but may not be versions
|
|
|
|
# known to be compatible with QuickCppLib. It has occurred in the
|
|
|
|
# past that newer versions were severely broken with QuickCppLib.
|
|
|
|
|
|
|
|
include(${CURRENT_PORT_DIR}/sha_manifest.cmake)
|
|
|
|
|
|
|
|
message(WARNING [=[
|
2021-09-28 03:42:44 +08:00
|
|
|
QuickCppLib and its downstream dependencies Outcome and LLFIO were tested against gsl-lite version 0.38.1 and byte-lite version 0.3.0. They are not guaranteed to work with newer versions, with failures experienced in the past up-to-and-including runtime crashes. You can pin the versions as verified to work in QuickCppLib's CI in your manifest file by adding:
|
2021-03-31 01:17:02 +08:00
|
|
|
"overrides": [
|
2021-09-28 03:42:44 +08:00
|
|
|
{ "name": "gsl-lite", "version": "0.38.1" },
|
|
|
|
{ "name": "byte-lite", "version": "0.3.0" }
|
2021-03-31 01:17:02 +08:00
|
|
|
]
|
|
|
|
Do not report issues to upstream without first pinning these previous versions.
|
|
|
|
]=])
|
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO ned14/quickcpplib
|
|
|
|
REF ${QUICKCPPLIB_REF}
|
|
|
|
SHA512 ${QUICKCPPLIB_SHA512}
|
|
|
|
HEAD_REF master
|
|
|
|
PATCHES
|
|
|
|
quicklib-depheaders.patch
|
|
|
|
)
|
|
|
|
|
|
|
|
# Quickcpplib deploys subsets of the dependency headers into a private subdirectory
|
|
|
|
file(COPY "${CURRENT_INSTALLED_DIR}/include/nonstd/byte.hpp"
|
|
|
|
DESTINATION "${SOURCE_PATH}/include/quickcpplib/byte/include/nonstd")
|
|
|
|
file(COPY "${CURRENT_INSTALLED_DIR}/include/gsl/gsl-lite.hpp"
|
|
|
|
DESTINATION "${SOURCE_PATH}/include/quickcpplib/gsl-lite/include/gsl")
|
|
|
|
file(COPY "${CURRENT_INSTALLED_DIR}/include/gsl-lite/gsl-lite.hpp"
|
|
|
|
DESTINATION "${SOURCE_PATH}/include/quickcpplib/gsl-lite/include/gsl-lite")
|
|
|
|
|
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH OPT_SOURCE_PATH
|
|
|
|
REPO akrzemi1/Optional
|
|
|
|
REF ${OPTIONAL_REF}
|
|
|
|
SHA512 ${OPTIONAL_SHA512}
|
|
|
|
HEAD_REF master
|
|
|
|
)
|
|
|
|
|
|
|
|
file(COPY "${OPT_SOURCE_PATH}/." DESTINATION "${SOURCE_PATH}/include/quickcpplib/optional")
|
|
|
|
|
|
|
|
# Because quickcpplib's deployed files are header-only, the debug build it not necessary
|
|
|
|
set(VCPKG_BUILD_TYPE release)
|
|
|
|
|
|
|
|
# Use QuickCppLib's own build process, skipping examples and tests.
|
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
|
|
PREFER_NINJA
|
|
|
|
OPTIONS
|
|
|
|
-DPROJECT_IS_DEPENDENCY=On
|
|
|
|
-DQUICKCPPLIB_USE_VCPKG_BYTE_LITE=ON
|
|
|
|
-DQUICKCPPLIB_USE_VCPKG_GSL_LITE=ON
|
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Git=ON
|
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Doxygen=ON
|
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/quickcpplib)
|
|
|
|
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/lib")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/share/cmakelib" "${CURRENT_PACKAGES_DIR}/share/ned14-internal-quickcpplib/cmakelib")
|
|
|
|
file(RENAME "${CURRENT_PACKAGES_DIR}/share/scripts" "${CURRENT_PACKAGES_DIR}/share/ned14-internal-quickcpplib/scripts")
|
|
|
|
|
|
|
|
file(INSTALL "${CURRENT_PORT_DIR}/usage" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}")
|
|
|
|
file(INSTALL "${SOURCE_PATH}/Licence.txt" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|