mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 10:28:59 +08:00
Added Sery 1.0.0
This commit is contained in:
parent
1da3c801a3
commit
1bda683b89
3
ports/sery/CONTROL
Normal file
3
ports/sery/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: sery
|
||||
Version: 1.0.0
|
||||
Description: Simple binary (de)serialization library
|
30
ports/sery/portfile.cmake
Normal file
30
ports/sery/portfile.cmake
Normal file
@ -0,0 +1,30 @@
|
||||
include(vcpkg_common_functions)
|
||||
vcpkg_download_distfile(ARCHIVE
|
||||
URL "https://github.com/Ninetainedo/Sery/archive/v1.0.zip"
|
||||
FILENAME "sery-1.0.0.zip"
|
||||
MD5 6af526fb1b029dd989a35e44a6fa59a8
|
||||
)
|
||||
vcpkg_extract_source_archive(${ARCHIVE})
|
||||
|
||||
SET(SERY_ROOT_DIR "${CURRENT_BUILDTREES_DIR}/src/Sery-1.0")
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SERY_ROOT_DIR}
|
||||
# OPTIONS -DUSE_THIS_IN_ALL_BUILDS=1 -DUSE_THIS_TOO=2
|
||||
# OPTIONS_RELEASE -DOPTIMIZE=1
|
||||
# OPTIONS_DEBUG -DDEBUGGABLE=1
|
||||
)
|
||||
|
||||
vcpkg_build_cmake()
|
||||
vcpkg_install_cmake()
|
||||
|
||||
# Removes unnecessary directories
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/cmake)
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SERY_ROOT_DIR}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/sery)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/sery/LICENSE ${CURRENT_PACKAGES_DIR}/share/sery/copyright)
|
||||
|
||||
# Moves cmake files where appropriate
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/cmake ${CURRENT_PACKAGES_DIR}/share/sery/cmake)
|
Loading…
Reference in New Issue
Block a user