vcpkg/ports/utfcpp/portfile.cmake

16 lines
708 B
CMake
Raw Normal View History

2016-10-27 10:57:34 +08:00
#header-only library
2016-10-20 02:35:24 +08:00
include(vcpkg_common_functions)
2017-07-28 12:23:51 +08:00
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/utfcpp-2.3.5)
2016-10-20 02:35:24 +08:00
vcpkg_download_distfile(ARCHIVE_FILE
2017-07-28 12:23:51 +08:00
URLS "https://github.com/nemtrif/utfcpp/archive/v2.3.5.tar.gz"
FILENAME "utfcpp-2.3.5.tar.gz"
SHA512 d5e672de952b78a78a8af0c81664f15667b30558fd406a9abc72c14dc444e0869e7c02cb66fa017ec0e760c0fb23c3e923a4b171c2acb3ed7b71612783e789ee
2016-10-20 02:35:24 +08:00
)
vcpkg_extract_source_archive(${ARCHIVE_FILE})
# Put the licence file where vcpkg expects it
file(INSTALL ${SOURCE_PATH}/source/utf8.h DESTINATION ${CURRENT_PACKAGES_DIR}/share/utfcpp RENAME copyright)
# Copy the utf8-cpp header files
file(COPY ${SOURCE_PATH}/source/ DESTINATION ${CURRENT_PACKAGES_DIR}/include)