diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-11 00:15:37 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-06-11 03:57:55 +0200 |
commit | efa3ef666f1bc25602e5bee1d75ceb7d545dd5aa (patch) | |
tree | 4b7873256f146e84cd877026960168e91de18734 /bin | |
parent | e34b02834b24be4062ffd535aa1b929481ff427e (diff) |
support executables in vim-ide-integration
Change-Id: Ib8827ff7ae00477269c7b47ec75ebdb41595d672
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ideNS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gbuild-to-ideNS b/bin/gbuild-to-ideNS index 703e539e61aa..128d5d5180ef 100755 --- a/bin/gbuild-to-ideNS +++ b/bin/gbuild-to-ideNS @@ -341,7 +341,7 @@ class VimIntegrationGenerator(IdeIntegrationGenerator): def emit(self): global_list = [] - for lib in set(self.gbuildparser.libs) | set(self.gbuildparser.tests): + for lib in set(self.gbuildparser.libs) | set(self.gbuildparser.tests) | set(self.gbuildparser.exes): entries = [] for file in lib.cxxobjects: filePath = os.path.join(self.gbuildparser.srcdir, file) + ".cxx" |