diff options
author | Martin Braun <martin.braun@ettus.com> | 2018-12-17 10:07:25 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-12-17 17:38:48 -0800 |
commit | 7daef13332e7ae8fbe7bf90d1a80240c315c7e85 (patch) | |
tree | e86b8ebf19c8c5c0f31dcf3ccc25d2111c0c33a0 /gr-dtv | |
parent | 2199c88b1b3b4e14e087409e2eba3112258102d8 (diff) |
cmake: Only go into grc/ subdirs when ENABLE_GRC=ON
Diffstat (limited to 'gr-dtv')
-rw-r--r-- | gr-dtv/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-dtv/CMakeLists.txt b/gr-dtv/CMakeLists.txt index 11488ac413..119837ace4 100644 --- a/gr-dtv/CMakeLists.txt +++ b/gr-dtv/CMakeLists.txt @@ -57,10 +57,12 @@ add_subdirectory(lib) if(ENABLE_PYTHON) add_subdirectory(swig) add_subdirectory(python/dtv) - add_subdirectory(grc) add_subdirectory(examples) add_subdirectory(apps) endif(ENABLE_PYTHON) +if(ENABLE_GRC) + add_subdirectory(grc) +endif(ENABLE_GRC) add_subdirectory(docs) ######################################################################## |