You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
513 B
9 lines
513 B
% _defines = " ".join(["-D%s" % d.replace(" ", "\\\\ ") for d in defines])
|
|
{
|
|
"execPath": "{{ cxx_path }}",
|
|
"gccDefaultCFlags": "-fsyntax-only {{! to_unix_path(cc_flags).replace(' -MMD ', ' ').replace('"', '\\"') }} {{ !_defines.replace('"', '\\"') }}",
|
|
"gccDefaultCppFlags": "-fsyntax-only {{! to_unix_path(cxx_flags).replace(' -MMD ', ' ').replace('"', '\\"') }} {{ !_defines.replace('"', '\\"') }}",
|
|
"gccErrorLimit": 15,
|
|
"gccIncludePaths": "{{ ','.join(includes) }}",
|
|
"gccSuppressWarnings": false
|
|
}
|
|
|