summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-06-11 00:15:37 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-06-11 03:57:55 +0200
commitefa3ef666f1bc25602e5bee1d75ceb7d545dd5aa (patch)
tree4b7873256f146e84cd877026960168e91de18734 /bin
parente34b02834b24be4062ffd535aa1b929481ff427e (diff)
support executables in vim-ide-integration
Change-Id: Ib8827ff7ae00477269c7b47ec75ebdb41595d672
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gbuild-to-ideNS2
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"