diff options
| author | ruki <[email protected]> | 2019-06-15 10:23:12 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-06-15 10:23:12 +0800 |
| commit | 3fbfcb830fd1615de3318abc459caa003abf72c0 (patch) | |
| tree | bfd6984ca00ff2155380906e7457ae767c1f3aee | |
| parent | 5bc284eb77475d2d6b64b293a8320233a33b3229 (diff) | |
modify comment
| -rw-r--r-- | xmake/rules/lex_yacc/lex/xmake.lua | 2 | ||||
| -rw-r--r-- | xmake/rules/lex_yacc/yacc/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/lex_yacc/lex/xmake.lua b/xmake/rules/lex_yacc/lex/xmake.lua index a34c82a19..ccaea4d74 100644 --- a/xmake/rules/lex_yacc/lex/xmake.lua +++ b/xmake/rules/lex_yacc/lex/xmake.lua @@ -104,7 +104,7 @@ rule("lex") print(compinst:compcmd(sourcefile_cx, objectfile, {compflags = compflags})) end - -- compile c++ source file for qrc + -- compile c/c++ source file for lex dependinfo.files = {} assert(compinst:compile(sourcefile_cx, objectfile, {dependinfo = dependinfo, compflags = compflags})) diff --git a/xmake/rules/lex_yacc/yacc/xmake.lua b/xmake/rules/lex_yacc/yacc/xmake.lua index 5867e5981..d94d68122 100644 --- a/xmake/rules/lex_yacc/yacc/xmake.lua +++ b/xmake/rules/lex_yacc/yacc/xmake.lua @@ -104,7 +104,7 @@ rule("yacc") print(compinst:compcmd(sourcefile_cx, objectfile, {compflags = compflags})) end - -- compile c++ source file for qrc + -- compile c/c++ source file for yacc dependinfo.files = {} assert(compinst:compile(sourcefile_cx, objectfile, {dependinfo = dependinfo, compflags = compflags})) |
