summaryrefslogtreecommitdiff
path: root/gr-fec
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2018-12-17 10:07:25 -0800
committerMartin Braun <martin.braun@ettus.com>2018-12-17 17:38:48 -0800
commit7daef13332e7ae8fbe7bf90d1a80240c315c7e85 (patch)
treee86b8ebf19c8c5c0f31dcf3ccc25d2111c0c33a0 /gr-fec
parent2199c88b1b3b4e14e087409e2eba3112258102d8 (diff)
cmake: Only go into grc/ subdirs when ENABLE_GRC=ON
Diffstat (limited to 'gr-fec')
-rw-r--r--gr-fec/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-fec/CMakeLists.txt b/gr-fec/CMakeLists.txt
index adb2a941fd..be554db7ef 100644
--- a/gr-fec/CMakeLists.txt
+++ b/gr-fec/CMakeLists.txt
@@ -59,8 +59,10 @@ if(ENABLE_PYTHON)
add_subdirectory(swig)
add_subdirectory(python/fec)
add_subdirectory(python/fec/LDPC)
- add_subdirectory(grc)
endif(ENABLE_PYTHON)
+if(ENABLE_GRC)
+ add_subdirectory(grc)
+endif(ENABLE_GRC)
add_subdirectory(examples)
add_subdirectory(docs)
add_subdirectory(ldpc_alist)