[kvasir-mpl] Add new port (#7562)

* [kvasir-mpl] Add new port
This commit is contained in:
NancyLi1013 2019-08-29 14:14:30 -07:00 committed by Phil Christensen
parent f9fa4dc19a
commit ce952a9316
2 changed files with 39 additions and 0 deletions

8
ports/kvasir-mpl/CONTROL Normal file
View File

@ -0,0 +1,8 @@
Source: kvasir-mpl
Version: 2019-08-06
Homepage: https://github.com/kvasir-io/mpl
Description: This library is part of the Kvasir project. Kvasir is a collection of zero cost statically checked libraries for resource constrained systems including microcontrollers.
Feature: test
Description: Build with test

View File

@ -0,0 +1,31 @@
include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO kvasir-io/mpl
REF a9060b46c37c769e5517e0116b060fec923b6fdb
SHA512 bbe7267d288eda9ded81ce82e428d237cb5a9d686cd1b68a334b1ae53db4bf25e37fb86d991e7cf61542ee91ccae8db7498efde91a07332fd68594a229ff35ca
HEAD_REF development
)
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
test BUILD_WITH_TEST
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS -DBUILD_TESTING=${BUILD_WITH_TEST}
)
vcpkg_install_cmake()
# Move CMake config files to the right place
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/kvasir_mpl)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
# Handle copyright
file(COPY ${SOURCE_PATH}/LICENSE.md DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/LICENSE.md ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)