move queue code to external

This commit is contained in:
2024-08-11 14:01:03 +02:00
parent 93d65ead89
commit 4ff9386398
5 changed files with 13 additions and 1 deletions

9
external/spscqueue/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
add_library(SPSCQueue INTERFACE
./SPSCQueue.h
)
target_compile_features(SPSCQueue INTERFACE cxx_std_17)
target_include_directories(SPSCQueue INTERFACE "${CMAKE_CURRENT_SOURCE_DIR}")