diff options
author | jan Iversen <jani@documentfoundation.org> | 2017-01-26 14:35:43 +0100 |
---|---|---|
committer | jan Iversen <jani@documentfoundation.org> | 2017-01-26 14:35:43 +0100 |
commit | dcd86466c6125b3d2ef30e8056d03b832835c807 (patch) | |
tree | 6c65799605618fab1d91e0424df9665999a20ef0 /bin/gbuild-to-ide | |
parent | 1fb65a66f19ab78b01d7da9784f00437b7ce1681 (diff) |
gbuildtojson support for yacc files.
added support for add_grammars macro
Change-Id: I17955bd1534d9f43e1953691d985a18ee8241d38
Diffstat (limited to 'bin/gbuild-to-ide')
-rwxr-xr-x | bin/gbuild-to-ide | 17 |
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 ? } |