InfiniTime/.vscode/c_cpp_properties.json

20 lines
644 B
JSON
Raw Normal View History

2021-03-26 17:37:01 +00:00
{
"configurations": [
{
2021-07-25 20:12:34 +00:00
"name": "nrfCC",
2021-03-26 17:37:01 +00:00
"includePath": [
2021-07-25 20:12:34 +00:00
"${workspaceFolder}/**",
"${workspaceFolder}/src/**",
"${workspaceFolder}/src"
2021-03-26 17:37:01 +00:00
],
"defines": [],
2021-07-25 20:12:34 +00:00
"compilerPath": "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gcc",
"cStandard": "c11",
2023-11-27 00:44:26 +00:00
"cppStandard": "c++20",
2021-07-25 20:12:34 +00:00
"intelliSenseMode": "linux-gcc-arm",
2021-08-08 22:51:31 +00:00
"configurationProvider": "ms-vscode.cpp-tools",
2021-03-26 17:37:01 +00:00
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],
"version": 4
}