mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-27 05:00:42 +00:00
[nngpp] Add new port. (#7417)
This commit is contained in:
parent
c6b6f8e0f3
commit
64aa585677
6
ports/nngpp/CONTROL
Normal file
6
ports/nngpp/CONTROL
Normal file
@ -0,0 +1,6 @@
|
||||
Source: nngpp
|
||||
Version: 2019-07-25
|
||||
Homepage:https://github.com/cwzx/nngpp
|
||||
Description: C++ wrapper around the nanomsg NNG API.
|
||||
Build-Depends: nng
|
||||
|
30
ports/nngpp/portfile.cmake
Normal file
30
ports/nngpp/portfile.cmake
Normal file
@ -0,0 +1,30 @@
|
||||
include(vcpkg_common_functions)
|
||||
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO cwzx/nngpp
|
||||
REF 3351f54e6e774505d8d8b88064d04eb98e0b1cda
|
||||
SHA512 6f72d1085b58ee7a8941294e7479661d8fc2c22cc8af2cee9c2cef11d508032a860c0061851bda07cf995ec8f57e5a25e241a15114a91c487d8aad6def2d4ce5
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
OPTIONS
|
||||
-DNNGPP_BUILD_DEMOS=OFF
|
||||
-DNNGPP_BUILD_TESTS=OFF
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
# Move CMake config files to the right place
|
||||
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/${PORT})
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug)
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib)
|
||||
|
||||
# Handle copyright
|
||||
file(COPY ${SOURCE_PATH}/license.txt DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
||||
file(RENAME ${CURRENT_PACKAGES_DIR}/share/${PORT}/license.txt ${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright)
|
||||
|
Loading…
Reference in New Issue
Block a user