mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 18:31:15 +08:00
[libbf] Add new port (#5570)
* [libff] Add new port * Add new port [libbf] * Update portfile.cmake * update libbf portfile * [libbf] Fail with meaningful message on Windows * [libbf] Fix MSVC check condition
This commit is contained in:
parent
aa560f10f8
commit
a8502ca793
3
ports/libbf/CONTROL
Normal file
3
ports/libbf/CONTROL
Normal file
@ -0,0 +1,3 @@
|
||||
Source: libbf
|
||||
Version: 1.0.0
|
||||
Description: Bloom filters for C++11.
|
27
ports/libbf/portfile.cmake
Normal file
27
ports/libbf/portfile.cmake
Normal file
@ -0,0 +1,27 @@
|
||||
if (VCPKG_CMAKE_SYSTEM_NAME STREQUAL "" OR VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
|
||||
message(FATAL_ERROR "libbf does not support MSVC")
|
||||
endif()
|
||||
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO mavam/libbf
|
||||
REF v1.0.0
|
||||
SHA512 04db7adbeb4bc6b20aed7f2676840499ed1afe499b4cab67f27d4a0ad234c1fb06eced24259f37870ec4760fe74d6d6307b5d11b3cd928b975661eb2966d4db8
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
vcpkg_copy_pdbs()
|
||||
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
file(COPY ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/libbf)
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/libbf/COPYING ${CURRENT_PACKAGES_DIR}/share/libbf/copyright)
|
Loading…
x
Reference in New Issue
Block a user