Browse Source

Update VSCode Settings.

Ian Walton 3 years ago
parent
commit
a760e12540
1 changed files with 17 additions and 0 deletions
  1. 17 0
      .vscode/c_cpp_properties.json

+ 17 - 0
.vscode/c_cpp_properties.json

@@ -0,0 +1,17 @@
+{
+    "configurations": [
+        {
+            "name": "Linux",
+            "includePath": [
+                "${workspaceFolder}/**"
+            ],
+            "defines": [],
+            "compilerPath": "/usr/bin/clang-6.0",
+            "cStandard": "c11",
+            "cppStandard": "c++14",
+            "intelliSenseMode": "linux-clang-x64",
+            "compileCommands": "${workspaceFolder}/build/compile_commands.json"
+        }
+    ],
+    "version": 4
+}