From c09d75b2eb6fc14a474875a2a7a990266be30119 Mon Sep 17 00:00:00 2001 From: Stefan Zabka Date: Wed, 13 May 2020 19:52:14 +0200 Subject: VSCode setup --- .vscode/c_cpp_properties.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..d57b434 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,29 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_GNU_SOURCE" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c11", + "cppStandard": "c++14", + "intelliSenseMode": "clang-x64", + "compilerArgs": [ + "-std=gnu11", + "-c", + "-g", + "-Os", + "-Wall", + "-Werror", + "-MMD", + "-MP", + "-D=_GNU_SOURCE" + ] + } + ], + "version": 4 +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf