Files
OpenVulkano/3rdParty/moodycamel_concurrentqueue/CMakeLists.txt
2024-12-10 22:59:54 +01:00

16 lines
403 B
CMake

include(FetchContent)
if(NOT DEFINED MOODY_CONCURRENTQUEUE_REPO)
set(MOODY_CONCURRENTQUEUE_REPO https://github.com/cameron314/concurrentqueue.git)
endif ()
FetchContent_Declare(
moodycamel_concurrentqueue
EXCLUDE_FROM_ALL
GIT_REPOSITORY ${MOODY_CONCURRENTQUEUE_REPO}
GIT_TAG v1.0.4
GIT_SHALLOW TRUE
)
FetchContent_MakeAvailable(moodycamel_concurrentqueue)