aboutsummaryrefslogtreecommitdiff
path: root/.vscode/c_cpp_properties.json
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-09-20 06:37:59 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-06 07:28:02 +0200
commitb8fd71aa2af110372841a1724471b8bffa4ab254 (patch)
treee596988b47c58003222b526e72294abb756c2d79 /.vscode/c_cpp_properties.json
parent053c4ad0c3807105a53d9ba65e47483a90bfde52 (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