Guide-Vest/.vscode/c_cpp_properties.json

24 lines
704 B
JSON
Raw Permalink Normal View History

2024-05-24 22:06:52 +08:00
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/include/**",
],
"defines": ["__CUDACC__", "HAS_PYTHON"],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu11",
"cppStandard": "gnu++11",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools",
"browse": {
"path": [
"${workspaceFolder}/src/**",
],
"limitSymbolsToIncludedHeaders": false,
"databaseFilename": ""
}
}
],
"version": 4
}