vcpkg/ports/pixel/portfile.cmake
Thomas1664 4a34f755de
[pixel] Update to master (#23550)
* Remove pixel from ci baseline

* don't build examples

* [pixel] update to master

* copy license from portfile.cmake

* version

* license

* version

* fix typo

* version

* use version-date

* version

* change version date to today

* version

* disable crt warnings on uwp

* version
2022-03-16 14:27:33 -07:00

30 lines
917 B
CMake

if(VCPKG_TARGET_IS_LINUX)
message(WARNING"${PORT} currently requires libglu1-mesa from the system package manager:
This can be installed on Ubuntu systems via sudo apt install libglu1-mesa-dev")
endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO dascandy/pixel
REF c4411f67746fdd811aa5f8c102ac340e9eaf4ec5
SHA512 e4f704c076bb61220349524b0b1033a92c44128bb81e79dbd32ea2d1aa9d4abb0d6daab3617f69b59d1c1e50d750767153174fea015d8718804612f4d9f68ff6
HEAD_REF master
PATCHES
001-prevent-examples.patch
)
vcpkg_cmake_configure(
SOURCE_PATH "${SOURCE_PATH}"
OPTIONS
-DBUILD_EXAMPLES=OFF
)
vcpkg_cmake_install()
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
vcpkg_copy_pdbs()
file(INSTALL "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright)