Skip to content

Commit 91e6943

Browse files
added vscode configuration for c++
1 parent b6761b3 commit 91e6943

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.vscode/c_cpp_properties.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Win32",
5+
"includePath": [
6+
"${default}",
7+
"${workspaceFolder}/include",
8+
"${workspaceFolder}/include/ics",
9+
"${workspaceFolder}/src/ice/include"
10+
],
11+
"defines": [
12+
"_DEBUG",
13+
"UNICODE",
14+
"_UNICODE",
15+
"EXTERNAL_PROJECT"
16+
],
17+
"windowsSdkVersion": "10.0.19041.0",
18+
"compilerPath": "cl.exe",
19+
"cStandard": "c17",
20+
"cppStandard": "c++17",
21+
"intelliSenseMode": "windows-msvc-x64"
22+
}
23+
],
24+
"version": 4
25+
}

0 commit comments

Comments
 (0)