mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 20:20:24 +08:00
5b66fdd442
* [uchardet] Update to 2021-09-03 * [uchardet] Bump version * [uchardet] Fix UWP build * [uchardet] Overwrite version * [uchardet] Add version Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
42 lines
1003 B
CMake
42 lines
1003 B
CMake
vcpkg_from_git(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
URL https://gitlab.freedesktop.org/uchardet/uchardet
|
|
REF 6f38ab95f55afd45ee6ccefcb92d21034b4a2521
|
|
PATCHES
|
|
fix-uwp-build.patch
|
|
)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
tool BUILD_BINARY
|
|
)
|
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" BUILD_STATIC)
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}"
|
|
OPTIONS_DEBUG
|
|
-DBUILD_BINARY=OFF
|
|
OPTIONS_RELEASE
|
|
${FEATURE_OPTIONS}
|
|
OPTIONS
|
|
-DBUILD_STATIC=${BUILD_STATIC}
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
|
|
vcpkg_copy_pdbs()
|
|
|
|
if(tool IN_LIST FEATURES)
|
|
vcpkg_copy_tools(TOOL_NAMES uchardet AUTO_CLEAN)
|
|
endif()
|
|
|
|
file(REMOVE_RECURSE
|
|
"${CURRENT_PACKAGES_DIR}/debug/include"
|
|
"${CURRENT_PACKAGES_DIR}/debug/share"
|
|
"${CURRENT_PACKAGES_DIR}/share/man"
|
|
)
|
|
|
|
file(INSTALL "${SOURCE_PATH}/COPYING" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)
|