diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gbuild-to-ide | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/gbuild-to-ide b/bin/gbuild-to-ide index 47eaebd84231..b2c23c886244 100755 --- a/bin/gbuild-to-ide +++ b/bin/gbuild-to-ide @@ -92,14 +92,14 @@ class GbuildParser: 'GENCXXOBJECTS': '.cxx', # remark is in workdir/GenCxxObject 'OBJCOBJECTS': '.m', 'OBJCXXOBJECTS': '.mm', + 'COBJECTS': '.c', - # gbuildtojson defines but does not fill these: + # gbuildtojson defines but does not fill these: 'ASMOBJECTS': '.s', 'GENCOBJECTS': '.c', 'YACCOBJECTS': '.y', # gbuildtojson need to be extended to fill these: - 'COBJECTS': '.c', 'FLEXOBJECTS': '.l', 'JAVAOBJECTS': '.java', 'PYTHONOBJECTS': '.py' @@ -122,6 +122,8 @@ class GbuildParser: else: filesSorted[i] = [] + # TODO: extend GbuildLinkTarget with new json keys + # Find a better way instead on a zillion parameters newObj = GbuildLinkTarget(match, location, foundincludes, |