Files
Seele/.vscode/c_cpp_properties.json
T

46 lines
1.3 KiB
JSON
Raw Normal View History

{
"configurations": [
{
"name": "Win32",
"includePath": [
2021-12-02 13:00:03 +01:00
"${workspaceFolder}/src/**",
"${workspaceFolder}/external/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
2021-10-19 23:04:38 +02:00
"intelliSenseMode": "windows-msvc-x64",
2020-10-03 11:00:10 +02:00
"configurationProvider": "ms-vscode.cmake-tools",
2021-04-01 16:40:14 +02:00
"cppStandard": "c++20",
2020-10-03 11:00:10 +02:00
"browse": {
"path": [
2021-12-02 13:00:03 +01:00
"${workspaceFolder}/src/**"
2020-10-03 11:00:10 +02:00
]
2021-10-19 23:04:38 +02:00
},
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30037/bin/Hostx64/x64/cl.exe"
2021-11-05 00:01:12 +01:00
},
{
"name": "Linux",
"includePath": [
2021-12-02 13:00:03 +01:00
"${workspaceFolder}/src/**",
"${workspaceFolder}/external/**"
2021-11-05 00:01:12 +01:00
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"configurationProvider": "ms-vscode.cmake-tools",
"cppStandard": "c++20",
"browse": {
"path": [
2021-12-02 13:00:03 +01:00
"${workspaceFolder}/src/**"
2021-11-05 00:01:12 +01:00
]
2021-11-24 12:10:23 +01:00
}
}
],
"version": 4
}