17 lines
389 B
Text
17 lines
389 B
Text
|
find_package(nng)
|
||
|
|
||
|
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()
|
||
|
|
||
|
find_package(mesytec-mvlc)
|
||
|
|
||
|
if (NOT mesytec-mvlc)
|
||
|
message("-- Using mesytec-mvlc from external/mesytec-mvlc")
|
||
|
add_subdirectory(mesytec-mvlc)
|
||
|
endif()
|