mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 07:39:01 +08:00
083c86d05e
* initial * format * Update ports/msdfgen/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * Update ports/msdfgen/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> * using vcpkg_copy_tools * Compromise between renameing and UWP * added feature "tools" * forgot a check * Update ports/msdfgen/portfile.cmake * Update port_versions * Add msdfgen.json in port_versions Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
45 lines
1.2 KiB
CMake
45 lines
1.2 KiB
CMake
# No symbols are exported in msdfgen source
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Chlumsky/msdfgen
|
|
REF 9af250c7d6780a41dcaf536c05e3e1987a1bdcd7
|
|
SHA512 6b1dadd386aedf1e2de927dc83fe1f7fd7e053b0e9829ea0609a193ab8d9f92ecf08d2a6225b76a4f7bf9344b2935f38bbd00c4cc0c6627c1d95f67d2db728fe
|
|
HEAD_REF master
|
|
PATCHES
|
|
compatibility.patch
|
|
)
|
|
|
|
set(BUILD_TOOLS OFF)
|
|
if ("tools" IN_LIST FEATURES)
|
|
if (VCPKG_TARGET_IS_UWP)
|
|
message("Tools couldn't be built on UWP, disable it automatically.")
|
|
else()
|
|
set(BUILD_TOOLS ON)
|
|
endif()
|
|
endif()
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
PREFER_NINJA
|
|
OPTIONS
|
|
-DMSDFGEN_BUILD_MSDFGEN_STANDALONE=${BUILD_TOOLS}
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/msdfgen)
|
|
|
|
# move exe to tools
|
|
if(BUILD_TOOLS AND VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
|
vcpkg_copy_tools(TOOL_NAMES msdfgen AUTO_CLEAN)
|
|
endif()
|
|
|
|
|
|
# cleanup
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
|
|
|
# license
|
|
file(INSTALL ${SOURCE_PATH}/LICENSE.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|