mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-06-07 12:06:49 +08:00
[palsigslot] New port (#15558)
Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>
This commit is contained in:
parent
fc2c8d20fa
commit
2dd2e62345
26
ports/palsigslot/portfile.cmake
Normal file
26
ports/palsigslot/portfile.cmake
Normal 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
4
ports/palsigslot/usage
Normal 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)
|
6
ports/palsigslot/vcpkg.json
Normal file
6
ports/palsigslot/vcpkg.json
Normal 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"
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user