-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCppProperties.json
29 lines (29 loc) · 1.05 KB
/
CppProperties.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"configurations": [
{
"name": "Mingw64",
"inheritEnvironments": [
"mingw_64"
],
"includePath": [
"${env.INCLUDE}",
"${workspaceRoot}/**",
"${workspaceRoot}/src",
"${workspaceRoot}/src/include",
"${workspaceRoot}/src/include/imgui"
],
"intelliSenseMode": "linux-gcc-x64",
"environments": [
{
"BIN_ROOT": "${env.MINGW64_ROOT}\\bin",
"environment": "mingw_64",
"FLAVOR": "x86_64-w64-mingw32",
"INCLUDE": "${env.MINGW64_ROOT}\\include;${env.MINGW64_ROOT}\\include\\c++\\${env.TOOLSET_VERSION};${env.MINGW64_ROOT}\\include\\c++\\${env.TOOLSET_VERSION}\\tr1;${env.MINGW64_ROOT}\\include\\c++\\${env.TOOLSET_VERSION}\\${env.FLAVOR};",
"MINGW64_ROOT": "C:\\msys64\\mingw64",
"PATH": "${env.MINGW64_ROOT}\\bin;${env.MINGW64_ROOT}\\..\\usr\\local\\bin;${env.MINGW64_ROOT}\\..\\usr\\bin;${env.MINGW64_ROOT}\\..\\bin;${env.PATH}",
"TOOLSET_VERSION": "12.2.0"
}
]
}
]
}