mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[pngwriter][WIP] add port (#3600)
* [pngwriter] add port * [pngwriter] Fix x86-windows builds. Improve cmake target fixups.
This commit is contained in:
parent
c0ec4809b1
commit
0a656f6a7a
4
ports/pngwriter/CONTROL
Normal file
4
ports/pngwriter/CONTROL
Normal file
@ -0,0 +1,4 @@
|
||||
Source: pngwriter
|
||||
Version: 0.7.0-1
|
||||
Build-Depends: zlib, libpng, freetype
|
||||
Description: PNGwriter is a very easy to use open source graphics library that uses PNG as its output format
|
28
ports/pngwriter/portfile.cmake
Normal file
28
ports/pngwriter/portfile.cmake
Normal file
@ -0,0 +1,28 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
if(VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
||||
message("Only static linkage is supported by pngwriter.")
|
||||
set(VCPKG_LIBRARY_LINKAGE static)
|
||||
endif()
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO pngwriter/pngwriter
|
||||
REF 0.7.0
|
||||
SHA512 3e4ef098e4d715d18844cada64f32dbf079fdd1f7a64b6fe5e19584094f6b2a61f80c53804f936b6eefd7ef9dad4a01a7210b1273939d385a0850e48f8ba6683
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/PNGwriter)
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle copyright
|
||||
file(INSTALL ${SOURCE_PATH}/doc/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/pngwriter RENAME copyright)
|
Loading…
x
Reference in New Issue
Block a user