summaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
authorTim Keller <geekboy1011@gmail.com>2021-07-25 20:12:34 +0000
committerTim Keller <geekboy1011@gmail.com>2021-08-07 18:19:11 +0000
commitf7643a4d828ec3c60f418b6d9a660097eb44e05e (patch)
treed7bc7202f4f587c0350c84c98bcffdbb9c428e41 /.vscode/c_cpp_properties.json
parentc0b84537b35fd358e929962a962c53e50019079e (diff)
Added cmake variants
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r--.vscode/c_cpp_properties.json15
1 files changed, 9 insertions, 6 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index b409ec98..f5c74b3a 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -1,15 +1,18 @@
{
"configurations": [
{
- "name": "Linux",
+ "name": "nrfCC",
"includePath": [
- "${workspaceFolder}/**"
+ "${workspaceFolder}/**",
+ "${workspaceFolder}/src/**",
+ "${workspaceFolder}/src"
],
"defines": [],
- "compilerPath": "/usr/bin/gcc",
- "cStandard": "gnu11",
- "cppStandard": "gnu++14",
- "intelliSenseMode": "linux-gcc-x64",
+ "compilerPath": "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gcc",
+ "cStandard": "c11",
+ "cppStandard": "c++14",
+ "intelliSenseMode": "linux-gcc-arm",
+ "configurationProvider": "ms-vscode.cmake-tools",
"compileCommands": "${workspaceFolder}/build/compile_commands.json"
}
],