mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-26 17:41:09 +08:00
Add Google Fruit to ports (#4291)
* Add Google Fruit to ports * [fruit] Use vcpkg_from_github() and configure_file()
This commit is contained in:
parent
add489dd75
commit
798f9cae6c
4
ports/fruit/CONTROL
Normal file
4
ports/fruit/CONTROL
Normal file
@ -0,0 +1,4 @@
|
||||
Source: fruit
|
||||
Version: 3.4.0-1
|
||||
Description: Fruit, a dependency injection framework for C++ by Google
|
||||
|
22
ports/fruit/portfile.cmake
Normal file
22
ports/fruit/portfile.cmake
Normal file
@ -0,0 +1,22 @@
|
||||
include(vcpkg_common_functions)
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO google/fruit
|
||||
REF v3.4.0
|
||||
SHA512 d78c76432c77acc4cc6ccf3fd9627a3fb2a0aa55d1baf7346422e9f1c1e048237d136588b44cfa943b542b43adbbb62fcd524e4a1cb870e9ffe8b7cf4dadb35d
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
# TODO: Make boost an optional dependency?
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DFRUIT_USES_BOOST=False
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
||||
|
||||
# Handle copyright
|
||||
configure_file(${SOURCE_PATH}/COPYING ${CURRENT_PACKAGES_DIR}/share/fruit/copyright COPYONLY)
|
Loading…
x
Reference in New Issue
Block a user