2017-06-10 11:38:25 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO mosra/corrade
|
2020-07-14 23:38:18 +08:00
|
|
|
REF v2020.06
|
|
|
|
SHA512 94cc8959b0ee43ecd8d13a25307e7829d53dc6601628d97c32288d1704e2c0835b755bffc06b2105e6aa5a612f119a60e83cb475860b51e6a35999215c100227
|
2017-06-10 11:38:25 +08:00
|
|
|
HEAD_REF master
|
2022-04-30 02:40:30 +08:00
|
|
|
PATCHES
|
|
|
|
fix-vs2019.patch
|
|
|
|
build-corrade-rc-always.patch
|
2017-06-08 03:08:08 +08:00
|
|
|
)
|
|
|
|
|
2018-07-04 22:12:51 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC)
|
2017-06-08 07:48:04 +08:00
|
|
|
|
2018-02-17 13:25:30 +08:00
|
|
|
# Handle features
|
2021-09-03 04:24:33 +08:00
|
|
|
set(_COMPONENTS "")
|
2018-02-17 13:25:30 +08:00
|
|
|
foreach(_feature IN LISTS ALL_FEATURES)
|
|
|
|
# Uppercase the feature name and replace "-" with "_"
|
|
|
|
string(TOUPPER "${_feature}" _FEATURE)
|
|
|
|
string(REPLACE "-" "_" _FEATURE "${_FEATURE}")
|
|
|
|
|
2021-09-03 04:24:33 +08:00
|
|
|
# Final feature is empty, ignore it
|
|
|
|
if(_feature)
|
|
|
|
list(APPEND _COMPONENTS ${_feature} WITH_${_FEATURE})
|
2018-02-17 13:25:30 +08:00
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
2021-09-03 04:24:33 +08:00
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS FEATURES ${_COMPONENTS})
|
|
|
|
|
2022-04-30 02:40:30 +08:00
|
|
|
set(corrade_rc_param "")
|
|
|
|
if(VCPKG_CROSSCOMPILING)
|
|
|
|
set(corrade_rc_param
|
|
|
|
"-DCORRADE_RC_EXECUTABLE=${CURRENT_HOST_INSTALLED_DIR}/tools/corrade/corrade-rc${VCPKG_HOST_EXECUTABLE_SUFFIX}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2023-03-07 07:44:04 +08:00
|
|
|
vcpkg_cmake_configure(
|
2021-10-12 11:43:05 +08:00
|
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
2018-02-17 13:25:30 +08:00
|
|
|
OPTIONS
|
2021-09-03 04:24:33 +08:00
|
|
|
${FEATURE_OPTIONS}
|
2022-04-30 02:40:30 +08:00
|
|
|
"${corrade_rc_param}"
|
2019-08-07 01:34:39 +08:00
|
|
|
-DUTILITY_USE_ANSI_COLORS=ON
|
2018-02-17 13:25:30 +08:00
|
|
|
-DBUILD_STATIC=${BUILD_STATIC}
|
2022-04-30 02:40:30 +08:00
|
|
|
MAYBE_UNUSED_VARIABLES
|
|
|
|
CORRADE_RC_EXECUTABLE
|
2017-06-08 03:08:08 +08:00
|
|
|
)
|
|
|
|
|
2023-03-07 07:44:04 +08:00
|
|
|
vcpkg_cmake_install()
|
2017-06-08 03:08:08 +08:00
|
|
|
|
2018-02-17 13:25:30 +08:00
|
|
|
# Debug includes and share are the same as release
|
2021-10-12 11:43:05 +08:00
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
2017-06-08 03:08:08 +08:00
|
|
|
|
2022-04-30 02:40:30 +08:00
|
|
|
# corrade-rc is not built when CMAKE_CROSSCOMPILING
|
2018-02-17 13:25:30 +08:00
|
|
|
if("utility" IN_LIST FEATURES)
|
2020-07-14 23:38:18 +08:00
|
|
|
vcpkg_copy_tools(TOOL_NAMES "corrade-rc" AUTO_CLEAN)
|
2018-02-17 13:25:30 +08:00
|
|
|
endif()
|
2017-06-08 03:08:08 +08:00
|
|
|
|
2018-02-17 13:25:30 +08:00
|
|
|
# Ensure no empty folders are left behind
|
|
|
|
if(NOT FEATURES)
|
|
|
|
# No features, no binaries (only Corrade.h).
|
|
|
|
file(REMOVE_RECURSE
|
2021-10-12 11:43:05 +08:00
|
|
|
"${CURRENT_PACKAGES_DIR}/bin"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/lib"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug")
|
2018-02-17 13:25:30 +08:00
|
|
|
# debug is completely empty, as include and share
|
|
|
|
# have already been removed.
|
|
|
|
|
2018-07-04 22:12:51 +08:00
|
|
|
elseif(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
2018-02-17 13:25:30 +08:00
|
|
|
# No dlls
|
|
|
|
file(REMOVE_RECURSE
|
2021-10-12 11:43:05 +08:00
|
|
|
"${CURRENT_PACKAGES_DIR}/bin"
|
|
|
|
"${CURRENT_PACKAGES_DIR}/debug/bin")
|
2017-06-08 07:48:04 +08:00
|
|
|
endif()
|
|
|
|
|
2017-06-08 03:08:08 +08:00
|
|
|
# Handle copyright
|
2021-10-12 11:43:05 +08:00
|
|
|
file(INSTALL "${SOURCE_PATH}/COPYING"
|
|
|
|
DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}"
|
2020-07-14 23:38:18 +08:00
|
|
|
RENAME copyright)
|
|
|
|
|
2022-04-30 02:40:30 +08:00
|
|
|
vcpkg_copy_pdbs()
|