83565138
hucm
提交vscode配置
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/src/DxDecoder/**",
"${workspaceFolder}/src/DxDecoder/",
"/usr/local/cuda-11.1/targets/x86_64-linux/include/**",
"${workspaceFolder}/3rdparty/**"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++11",
"intelliSenseMode": "linux-gcc-x64",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}
|