11 lines
142 B
CMake
11 lines
142 B
CMake
add_library(common STATIC
|
|
tmp.cpp
|
|
)
|
|
|
|
find_package(concurrentqueue REQUIRED)
|
|
|
|
target_link_libraries(common
|
|
PUBLIC
|
|
spdlog::spdlog
|
|
)
|