From 365b31c0c16b894cd4f2cb642836dcad5b547405 Mon Sep 17 00:00:00 2001 From: Jaby Date: Sun, 28 Aug 2022 09:20:32 +0200 Subject: [PATCH] Prepare IntelliSense Settings --- src/Library/Library.code-workspace | 20 ++++++++++++++++++-- src/Library/src/start.c | 2 ++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/src/Library/Library.code-workspace b/src/Library/Library.code-workspace index 39a51c52..13919258 100644 --- a/src/Library/Library.code-workspace +++ b/src/Library/Library.code-workspace @@ -53,6 +53,22 @@ } ] }, - "settings": {}, - + "settings": { + "C_Cpp.default.includePath": [ + "./" + ], + "C_Cpp.default.compilerPath": "", + "C_Cpp.default.cStandard": "c17", + "C_Cpp.default.cppStandard": "c++20", + "C_Cpp.default.intelliSenseMode": "", + "C_Cpp.default.compilerArgs": [ + ], + "C_Cpp.default.defines": [ + "" + ], + "files.exclude": { + "**/*.o": true, + "**/*.dep": true + } + } } \ No newline at end of file diff --git a/src/Library/src/start.c b/src/Library/src/start.c index e439c866..54cb85ac 100644 --- a/src/Library/src/start.c +++ b/src/Library/src/start.c @@ -1,3 +1,5 @@ + + void _start() { //call main here } \ No newline at end of file