diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2021-08-18 19:07:02 (GMT) |
|---|---|---|
| committer | Riku Isokoski <riksu9000@gmail.com> | 2021-08-18 19:07:02 (GMT) |
| commit | 85c99797dad39348976d92ecf935536f362ee2c5 (patch) | |
| tree | 820a3bbe74993ff6ce6b7f430d187a397a46f363 /.vscode/c_cpp_properties.json | |
| parent | fe33c756b7326cbf0a6c70822b70cff4dc2e3401 (diff) | |
| parent | df8ea7fe523bb9ec0ac3e24f0b1bebe5743d90cc (diff) | |
Merge branch 'develop' into new_touch_handler
Diffstat (limited to '.vscode/c_cpp_properties.json')
| -rw-r--r-- | .vscode/c_cpp_properties.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..f8da48d --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "nrfCC", + "includePath": [ + "${workspaceFolder}/**", + "${workspaceFolder}/src/**", + "${workspaceFolder}/src" + ], + "defines": [], + "compilerPath": "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gcc", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "linux-gcc-arm", + "configurationProvider": "ms-vscode.cpp-tools", + "compileCommands": "${workspaceFolder}/build/compile_commands.json" + } + ], + "version": 4 +}
\ No newline at end of file |
