From 6bb34cd707188b410c8147bfbba5f15223cb4b7e Mon Sep 17 00:00:00 2001 From: Michatec Date: Mon, 6 Apr 2026 23:11:30 +0200 Subject: [PATCH] chore(config): add .vscode configuration folder --- .vscode/c_cpp_properties.json | 16 ++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 19 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..c9327ac --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Android", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [ + "_DEBUG", + "UNICODE", + "_UNICODE" + ] + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..85bdc9d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.default.compilerPath": "" +} \ No newline at end of file