flecs_tests/.vscode/c_cpp_properties.json

54 lines
1.7 KiB
JSON

{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "${default}"
},
{
"name": "Emscripten",
"includePath": [
"${workspaceFolder}/../sokol",
"${workspaceFolder}/../nuklear"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "C:\\Users\\c.pons\\Documents\\Perso\\Git\\emsdk\\upstream\\emscripten\\emcc.bat",
"cStandard": "c99",
"cppStandard": "c++17",
"intelliSenseMode": "windows-clang-x64",
"mergeConfigurations": false,
"browse": {
"path": [
"c:/Users/c.pons/Documents/Perso/Git/flecs_tests/**",
"c:/Users/c.pons/Documents/Perso/Git/flecs_tests"
],
"limitSymbolsToIncludedHeaders": true
},
"compilerArgs": [
"-sUSE_WEBGPU",
"-sASSERTIONS",
"-sWASM_BIGINT",
"-sALLOW_MEMORY_GROWTH",
"-msimd128",
"-sFILESYSTEM=0"
]
}
],
"version": 4
}