diff --git a/.vscode/.gitignore b/.vscode/.gitignore index e69de29..e38da20 100644 --- a/.vscode/.gitignore +++ b/.vscode/.gitignore @@ -0,0 +1 @@ +settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..b198f99 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "all", + "defines": [ + "SDL_DISABLE_ANALYZE_MACROS", + "DEBUG=1" + ], + "includePath": [ + "dependencies/include/SDL2", + "dependencies/imgui", + "${default}" + ] + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 079483e..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "C_Cpp.codeAnalysis.exclude": { - "**/dependencies/": true - }, - "C_Cpp.default.defines": [ - "SDL_DISABLE_ANALYZE_MACROS", - "DEBUG=1" - ], - "C_Cpp.default.includePath": [ - "dependencies/include/SDL2", - "dependencies/imgui", - "${default}" - ] -}