Add VSCode workspaces for OpenWatcom 2 on Linux.

This commit is contained in:
2021-03-09 13:51:08 +00:00
parent af96977105
commit 7b3c8becfb
5 changed files with 170 additions and 1 deletions

View File

@@ -0,0 +1,41 @@
{
"folders": [
{
"path": "../.."
}
],
"settings": {
"C_Cpp.clang_format_sortIncludes": true,
"C_Cpp.default.cStandard": "c89",
"C_Cpp.default.compilerPath": "/opt/watcom/binl64/wcc386",
"C_Cpp.default.systemIncludePath": [
"/opt/watcom/h",
"/opt/watcom/h\\os2"
],
"C_Cpp.default.compilerArgs": [
"-i=\"/opt/watcom/h;C:\\WATCOM\\OS2\"",
"-w4",
"-e25",
"-zq",
"-od",
"-d2",
"-3r",
"-bt=os2",
"-fo=.obj",
"-mf"
],
"C_Cpp.default.defines": [
"__X86__",
"__386__",
"M_I386",
"_M_I386",
"_M_IX86=500",
"__OS2__",
"__FLAT__",
"M_386FM",
"_M_386FM",
"__WATCOMC__=1280",
"_INTEGRAL_MAX_BITS=64"
]
}
}