From 2abe88368bd4fe9fd5cf72c8f86126bc20c89fa0 Mon Sep 17 00:00:00 2001 From: srcejon Date: Wed, 6 Nov 2024 11:58:44 +0000 Subject: [PATCH] Use ENABLE_METIS option --- devices/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/devices/CMakeLists.txt b/devices/CMakeLists.txt index 5232822f1..7b5f89e5b 100644 --- a/devices/CMakeLists.txt +++ b/devices/CMakeLists.txt @@ -40,4 +40,6 @@ if(ENABLE_USRP AND UHD_FOUND) add_subdirectory(usrp) endif() -add_subdirectory(metis) +if(ENABLE_METIS) + add_subdirectory(metis) +endif()