forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[atomic-queue] Update to 1.5 (microsoft#35799)
- Loading branch information
1 parent
29b03c4
commit 69cc111
Showing
4 changed files
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
vcpkg_from_github( | ||
OUT_SOURCE_PATH SOURCE_PATH | ||
REPO max0x7ba/atomic_queue | ||
REF 7619054490efdbfe377bd528bc09b21f5cd38a02 | ||
SHA512 0d145f461a5c978c4d6f6d8ec1f06f0c61f3d009e65eac12db806c2aa7941461f881b34b9c4dd9aeebd3206a4598e6081f89f983c389b2f5aecefefcbddd94b6 | ||
REF "v${VERSION}" | ||
SHA512 d2b329698412127d23e9ee55472f65869c59b228439e714ebbe6cc66202b654a102f32583e7cc3b5999c22c1dba69a5aa4365870cc4b88b75b1ac0b4d94b979a | ||
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 | ||
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) | ||
vcpkg_install_copyright(FILE_LIST "${SOURCE_PATH}/LICENSE") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"name": "atomic-queue", | ||
"version-date": "2021-05-03", | ||
"version": "1.5", | ||
"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" | ||
"homepage": "https://github.com/max0x7ba/atomic_queue", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters