diff options
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | .vscode/c_cpp_properties.json | 20 |
2 files changed, 5 insertions, 21 deletions
@@ -32,4 +32,8 @@ build/ # Executables *.exe *.out -*.app
\ No newline at end of file +*.app + +# IDE Folders +.idea/ +.vscode/ diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 47c2f08..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "configurations": [ - { - "name": "Mac", - "includePath": [ - "${workspaceFolder}/**", - "/opt/homebrew/include", - ], - "defines": [], - "macFrameworkPath": [ - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" - ], - "compilerPath": "/usr/bin/clang", - "cStandard": "c20", - "cppStandard": "c++20", - "intelliSenseMode": "macos-clang-arm64" - } - ], - "version": 4 -}
\ No newline at end of file |
