C/C++ INTEGRATION FOR VSCODE
parent
4398cd805d
commit
a28b243352
|
@ -0,0 +1,17 @@
|
||||||
|
{
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Win32",
|
||||||
|
"includePath": [
|
||||||
|
"${workspaceFolder}/**"
|
||||||
|
],
|
||||||
|
"windowsSdkVersion": "10.0.22621.0",
|
||||||
|
"compilerPath": "cl.exe",
|
||||||
|
"intelliSenseMode": "windows-msvc-x64",
|
||||||
|
"defines": [
|
||||||
|
"NDEBUG=1"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"version": 4
|
||||||
|
}
|
|
@ -7,5 +7,8 @@
|
||||||
"*.gspec": "go",
|
"*.gspec": "go",
|
||||||
"fsm.h": "c",
|
"fsm.h": "c",
|
||||||
"v4k": "c"
|
"v4k": "c"
|
||||||
}
|
},
|
||||||
|
"C_Cpp.default.defines": [
|
||||||
|
"_WIN32"
|
||||||
|
]
|
||||||
}
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
@echo off
|
||||||
|
call razzle amd64
|
||||||
|
start "" code .
|
||||||
|
exit
|
Loading…
Reference in New Issue