mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 02:09:00 +08:00
39 lines
1.3 KiB
CMake
39 lines
1.3 KiB
CMake
include(vcpkg_common_functions)
|
|
|
|
set(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/pixman-0.34.0)
|
|
|
|
vcpkg_download_distfile(ARCHIVE
|
|
URLS "https://www.cairographics.org/releases/pixman-0.34.0.tar.gz"
|
|
FILENAME "pixman-0.34.0.tar.gz"
|
|
SHA512 81caca5b71582b53aaac473bc37145bd66ba9acebb4773fa8cdb51f4ed7fbcb6954790d8633aad85b2826dd276bcce725e26e37997a517760e9edd72e2669a6d
|
|
)
|
|
vcpkg_extract_source_archive(${ARCHIVE})
|
|
|
|
file(COPY ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt DESTINATION ${SOURCE_PATH}/pixman)
|
|
|
|
vcpkg_configure_cmake(
|
|
SOURCE_PATH ${SOURCE_PATH}/pixman
|
|
PREFER_NINJA
|
|
)
|
|
|
|
vcpkg_install_cmake()
|
|
|
|
# Copy the appropriate header files.
|
|
file(COPY
|
|
"${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
|
|
)
|
|
|
|
# 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()
|