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-utils/python | |
parent | 2199c88b1b3b4e14e087409e2eba3112258102d8 (diff) |
cmake: Only go into grc/ subdirs when ENABLE_GRC=ON
Diffstat (limited to 'gr-utils/python')
-rw-r--r-- | gr-utils/python/modtool/gr-newmod/CMakeLists.txt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gr-utils/python/modtool/gr-newmod/CMakeLists.txt b/gr-utils/python/modtool/gr-newmod/CMakeLists.txt index 0496ceeaa4..e03d787828 100644 --- a/gr-utils/python/modtool/gr-newmod/CMakeLists.txt +++ b/gr-utils/python/modtool/gr-newmod/CMakeLists.txt @@ -190,11 +190,13 @@ add_custom_target(uninstall ######################################################################## add_subdirectory(include/howto) add_subdirectory(lib) -add_subdirectory(swig) -add_subdirectory(python) -add_subdirectory(grc) add_subdirectory(apps) add_subdirectory(docs) +add_subdirectory(swig) +add_subdirectory(python) +if(ENABLE_GRC) + add_subdirectory(grc) +endif(ENABLE_GRC) ######################################################################## # Install cmake search helper for this library |