os_kernel_lab/.vscode/c_cpp_properties.json

17 lines
611 B
JSON
Raw Normal View History

{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
2024-04-14 19:15:43 +08:00
// "${workspaceFolder}/labcodes_answer/**/",
// 由于按顺序搜索所以如果这样的话搜索到lab1_result中的同名头文件就不会引用到lab2_result中的同名头文件导致错误
"${workspaceFolder}/labcodes_answer/lab2_result/kern/mm/"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}