diff options
author | Tim O'Shea <tim.oshea753@gmail.com> | 2013-10-09 20:11:49 -0400 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-10-12 09:12:36 -0700 |
commit | 2104810f45d89b65ba91b79664855b365959909a (patch) | |
tree | 24a3f770bd6a13a65dab8f1a09f8224ab4d1447c /gr-utils/python/modtool/modtool_base.py | |
parent | e83d63263e95471f0fb48cdfbbc794b564e72703 (diff) |
gr_modtool: install a howtoConfig.cmake when creating new out of tree modules, this will allow other cmake modules to be able to easily find and link against it in a clean way
Diffstat (limited to 'gr-utils/python/modtool/modtool_base.py')
-rw-r--r-- | gr-utils/python/modtool/modtool_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gr-utils/python/modtool/modtool_base.py b/gr-utils/python/modtool/modtool_base.py index 081c10aaf9..92649a8589 100644 --- a/gr-utils/python/modtool/modtool_base.py +++ b/gr-utils/python/modtool/modtool_base.py @@ -117,6 +117,7 @@ class ModTool(object): self._info['includedir'] = 'include' self._file['cminclude'] = os.path.join(self._info['includedir'], 'CMakeLists.txt') self._file['cmswig'] = os.path.join('swig', 'CMakeLists.txt') + self._file['cmfind'] = os.path.join('cmake', 'Modules', 'howtoConfig.cmake') def _check_directory(self, directory): """ Guesses if dir is a valid GNU Radio module directory by looking for |