mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 01:19:00 +08:00
[atomic-queue]: available in vcpkg! (#17953)
Co-authored-by: Michael Heyman <Michael.Heyman@jhuapl.edu>
This commit is contained in:
parent
7e5febae30
commit
f5b1b96dda
20
ports/atomic-queue/portfile.cmake
Normal file
20
ports/atomic-queue/portfile.cmake
Normal file
@ -0,0 +1,20 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO max0x7ba/atomic_queue
|
||||
REF 7619054490efdbfe377bd528bc09b21f5cd38a02
|
||||
SHA512 0d145f461a5c978c4d6f6d8ec1f06f0c61f3d009e65eac12db806c2aa7941461f881b34b9c4dd9aeebd3206a4598e6081f89f983c389b2f5aecefefcbddd94b6
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
file(
|
||||
COPY
|
||||
${SOURCE_PATH}/include/atomic_queue/atomic_queue.h
|
||||
${SOURCE_PATH}/include/atomic_queue/atomic_queue_mutex.h
|
||||
${SOURCE_PATH}/include/atomic_queue/barrier.h
|
||||
${SOURCE_PATH}/include/atomic_queue/defs.h
|
||||
${SOURCE_PATH}/include/atomic_queue/spinlock.h
|
||||
DESTINATION
|
||||
${CURRENT_PACKAGES_DIR}/include/atomic_queue
|
||||
)
|
||||
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
6
ports/atomic-queue/vcpkg.json
Normal file
6
ports/atomic-queue/vcpkg.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "atomic-queue",
|
||||
"version-date": "2021-05-03",
|
||||
"description": "Minimalistic header-only thread-safe ultra-low-latency multiple-producer-multiple-consumer lockless queues based on circular buffer with std::atomic.",
|
||||
"homepage": "https://github.com/max0x7ba/atomic_queue"
|
||||
}
|
9
versions/a-/atomic-queue.json
Normal file
9
versions/a-/atomic-queue.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "a32a426d9c16a0067532134ecb6680ee7928f7f7",
|
||||
"version-date": "2021-05-03",
|
||||
"port-version": 0
|
||||
}
|
||||
]
|
||||
}
|
@ -188,6 +188,10 @@
|
||||
"baseline": "0",
|
||||
"port-version": 0
|
||||
},
|
||||
"atomic-queue": {
|
||||
"baseline": "2021-05-03",
|
||||
"port-version": 0
|
||||
},
|
||||
"aubio": {
|
||||
"baseline": "0.4.9",
|
||||
"port-version": 4
|
||||
|
Loading…
Reference in New Issue
Block a user