2016-11-26 07:48:19 +08:00
|
|
|
include(vcpkg_common_functions)
|
|
|
|
|
2019-05-03 13:57:43 +08:00
|
|
|
vcpkg_check_linkage(ONLY_STATIC_LIBRARY)
|
|
|
|
|
2019-03-13 07:00:31 +08:00
|
|
|
set(PIXMAN_VERSION 0.38.0)
|
2016-11-26 07:48:19 +08:00
|
|
|
vcpkg_download_distfile(ARCHIVE
|
2018-09-12 04:11:51 +08:00
|
|
|
URLS "https://www.cairographics.org/releases/pixman-${PIXMAN_VERSION}.tar.gz"
|
|
|
|
FILENAME "pixman-${PIXMAN_VERSION}.tar.gz"
|
2019-03-13 07:00:31 +08:00
|
|
|
SHA512 1b0205dbe9d9185c68813ce577a889f3c83e83fbd9955c3a72d411c3b476e6be93fc246b5b6ef4ee17e2bb8eb6fb5559e01dff7feb6a6c4c6314f980e960d690
|
2016-11-26 07:48:19 +08:00
|
|
|
)
|
2018-09-12 04:11:51 +08:00
|
|
|
vcpkg_extract_source_archive_ex(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
ARCHIVE ${ARCHIVE}
|
|
|
|
REF ${PIXMAN_VERSION}
|
|
|
|
)
|
2016-11-26 07:48:19 +08:00
|
|
|
|
2018-03-12 14:41:51 +08:00
|
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}/pixman)
|
2016-11-26 07:48:19 +08:00
|
|
|
|
|
|
|
vcpkg_configure_cmake(
|
2018-03-12 14:41:51 +08:00
|
|
|
SOURCE_PATH ${SOURCE_PATH}/pixman
|
|
|
|
PREFER_NINJA
|
2016-11-26 07:48:19 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2018-09-12 04:11:51 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH share/unofficial-pixman TARGET_PATH share/unofficial-pixman)
|
|
|
|
|
2016-11-26 07:48:19 +08:00
|
|
|
# Copy the appropriate header files.
|
|
|
|
file(COPY
|
2018-03-12 14:41:51 +08:00
|
|
|
"${SOURCE_PATH}/pixman/pixman.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-accessor.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-combine32.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-compiler.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-edge-imp.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-inlines.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-private.h"
|
|
|
|
"${SOURCE_PATH}/pixman/pixman-version.h"
|
|
|
|
DESTINATION ${CURRENT_PACKAGES_DIR}/include
|
2016-11-26 07:48:19 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
# Handle copyright
|
|
|
|
file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/pixman)
|
|
|
|
file(RENAME ${CURRENT_PACKAGES_DIR}/share/pixman/COPYING ${CURRENT_PACKAGES_DIR}/share/pixman/copyright)
|
|
|
|
|
|
|
|
vcpkg_copy_pdbs()
|
2018-09-12 04:11:51 +08:00
|
|
|
|
|
|
|
vcpkg_test_cmake(PACKAGE_NAME unofficial-pixman)
|