2024-11-21 19:30:59 +01:00
|
|
|
find_package(nng QUIET)
|
2023-06-27 20:19:58 +02:00
|
|
|
|
|
|
|
if(NOT nng)
|
|
|
|
message("-- Using nng from external/nng")
|
|
|
|
option(NNG_SETSTACKSIZE "Use rlimit for thread stack size" ON)
|
|
|
|
set(NNG_TESTS OFF)
|
|
|
|
set(NNG_ENABLE_NNGCAT ON)
|
|
|
|
add_subdirectory(nng)
|
|
|
|
endif()
|
|
|
|
|
2024-11-21 19:30:59 +01:00
|
|
|
find_package(mesytec-mvlc QUIET)
|
2023-06-27 20:19:58 +02:00
|
|
|
|
|
|
|
if (NOT mesytec-mvlc)
|
|
|
|
message("-- Using mesytec-mvlc from external/mesytec-mvlc")
|
|
|
|
add_subdirectory(mesytec-mvlc)
|
|
|
|
endif()
|
2024-11-23 11:00:18 +01:00
|
|
|
|
|
|
|
find_package(spdlog QUIET)
|
|
|
|
|
|
|
|
if (NOT TARGET spdlog)
|
|
|
|
message("-- Using spdlog from external/spdlog")
|
|
|
|
add_subdirectory(spdlog)
|
|
|
|
endif()
|