aboutsummaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
authordec05eba <0xdec05eba@gmail.com>2018-09-20 06:37:59 +0200
committerdec05eba <0xdec05eba@gmail.com>2018-09-20 06:40:28 +0200
commit194a5708f3a42c6254cf99d8e03b5c8c60224feb (patch)
tree650a6427b438f5ebdbc31746e5d8e5b5debef7ff /.vscode/c_cpp_properties.json
parentce415d8b76e355c34dc42b68c4da5a69b2c392b8 (diff)
Initial commit, works to create ninja file
Diffstat (limited to '.vscode/c_cpp_properties.json')
-rw-r--r--.vscode/c_cpp_properties.json17
1 files changed, 17 insertions, 0 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
new file mode 100644
index 0000000..3c26c84
--- /dev/null
+++ b/.vscode/c_cpp_properties.json
@@ -0,0 +1,17 @@
+{
+ "configurations": [
+ {
+ "name": "Linux",
+ "includePath": [
+ "${workspaceFolder}/**"
+ ],
+ "defines": [],
+ "compilerPath": "/usr/bin/gcc",
+ "cStandard": "c11",
+ "cppStandard": "c++14",
+ "intelliSenseMode": "clang-x64",
+ "compileCommands": "${workspaceFolder}/tests/compile_commands.json"
+ }
+ ],
+ "version": 4
+} \ No newline at end of file