summaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-08-10 14:54:13 (GMT)
committerGitHub <noreply@github.com>2021-08-10 14:54:13 (GMT)
commit643077341b14a52819cbaf02abbd5fb56cdeb802 (patch)
treef8d130b7003ef38aad7f93f101eae9fa1d0ccea9 /.vscode/c_cpp_properties.json
parent9fb37550886f09f6510e99a5b452262c53c3987c (diff)
parent44889adda074af2a7a5fe61b19667521755dd24d (diff)
Merge pull request #505 from geekbozu/devcon
VSCode Devcontainer
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r--.vscode/c_cpp_properties.json20
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