[palsigslot] New port (#15558)

Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>
This commit is contained in:
Luca Schlecker 2021-01-13 04:57:22 +01:00 committed by GitHub
parent fc2c8d20fa
commit 2dd2e62345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,26 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO palacaze/sigslot
REF v1.2.0
SHA512 6a6fb862a9eeea78732f2191916c7384a4bcb65e42c948f726459ee3cb446f90c4bd18c7c94ee4f9b15c81c5aa729094013805161d532c2284d9e77cdffaa468
HEAD_REF master
)
vcpkg_configure_cmake(
SOURCE_PATH ${SOURCE_PATH}
PREFER_NINJA
OPTIONS
-DSIGSLOT_COMPILE_EXAMPLES=OFF
-DSIGSLOT_COMPILE_TESTS=OFF
)
vcpkg_install_cmake()
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/PalSigslot TARGET_PATH share/PalSigslot)
file(REMOVE_RECURSE
${CURRENT_PACKAGES_DIR}/debug
${CURRENT_PACKAGES_DIR}/lib
)
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)

4
ports/palsigslot/usage Normal file
View File

@ -0,0 +1,4 @@
The package palsigslot is compatible with built-in CMake targets:
find_package(PalSigslot CONFIG REQUIRED)
target_link_libraries(main PRIVATE Pal::Sigslot)

View File

@ -0,0 +1,6 @@
{
"name": "palsigslot",
"version-string": "1.2.0",
"description": "A header-only, thread safe implementation of signal-slots for C++.",
"homepage": "https://github.com/palacaze/sigslot"
}