mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[crossguid] Cross Guid Initial port (#3672)
* [crossguid] Cross Guid Initial port * [crossguid] Update to latest master to use significantly improved buildsystem.
This commit is contained in:
parent
f5bc21d802
commit
f747914974
4
ports/crossguid/CONTROL
Normal file
4
ports/crossguid/CONTROL
Normal file
@ -0,0 +1,4 @@
|
||||
Source: crossguid
|
||||
Version: 0.2.2-2018-06-16
|
||||
Build-Depends: libuuid (!windows&!uwp&!osx&!android)
|
||||
Description: CrossGuid is a minimal, cross platform, C++ GUID library.
|
29
ports/crossguid/portfile.cmake
Normal file
29
ports/crossguid/portfile.cmake
Normal file
@ -0,0 +1,29 @@
|
||||
include(vcpkg_common_functions)
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO graeme-hill/crossguid
|
||||
REF c4f8e9b21f779abe287c022e73eeac365d430337
|
||||
SHA512 38876f410d0014ad930b720312cecc99be1361b9810a21d5ffc1deba6221ea0e2aebd0da332adb18fd314d0477fd33410403120629b8df405bb64a9884e3d0b0
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
if (VCPKG_LIBRARY_LINKAGE STREQUAL "dynamic")
|
||||
message(STATUS "Warning: Dynamic building not supported. Building static instead")
|
||||
set(VCPKG_LIBRARY_LINKAGE static)
|
||||
endif()
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DCROSSGUID_TESTS:BOOL=OFF
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH share/crossguid/cmake)
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
|
||||
# Handle copyright
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/crossguid/LICENSE ${CURRENT_PACKAGES_DIR}/share/crossguid/copyright)
|
Loading…
x
Reference in New Issue
Block a user