summaryrefslogtreecommitdiff
path: root/bin/gbuild-to-ide
diff options
context:
space:
mode:
Diffstat (limited to 'bin/gbuild-to-ide')
-rwxr-xr-xbin/gbuild-to-ide17
1 files changed, 8 insertions, 9 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide
index 860f7243e8da..6a398d6c8724 100755
--- a/bin/gbuild-to-ide
+++ b/bin/gbuild-to-ide
@@ -92,15 +92,14 @@ class GbuildParser:
# Add handling of BLACKLIST
# Relation between json object and file extension
jsonSrc = {
- 'CXXOBJECTS': '.cxx', 'OBJCOBJECTS': '.m', 'OBJCXXOBJECTS': '.mm', 'COBJECTS': '.c',
-
- 'GENCXXOBJECTS': '.cxx', # remark is in workdir/GenCxxObject
- 'ASMOBJECTS': '.s', #not in json, due to Blacklist ?
- 'YACCOBJECTS': '.y', #not in json, due to Blacklist ?
- 'GENCOBJECTS': '.c', #not in json, due to Blacklist ?
- 'LEXOBJECTS': '.l', #not in json, due to add_scanners
- 'JAVAOBJECTS': '.java', #not in json, due to Blacklist ?
- 'PYTHONOBJECTS': '.py' #not in json, due to Blacklist ?
+ 'CXXOBJECTS': '.cxx', 'OBJCOBJECTS': '.m', 'OBJCXXOBJECTS': '.mm', 'COBJECTS': '.c',
+ 'LEXOBJECTS': '.l', 'YACCOBJECTS': '.y',
+
+ 'GENCXXOBJECTS': '.cxx', # remark is in workdir/GenCxxObject
+ 'ASMOBJECTS': '.s', #not in json, due to Blacklist ?
+ 'GENCOBJECTS': '.c', #not in json, due to Blacklist ?
+ 'JAVAOBJECTS': '.java', #not in json, due to Blacklist ?
+ 'PYTHONOBJECTS': '.py' #not in json, due to Blacklist ?
}