diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index c492c00..0000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "configurations": [ - { - "name": "Mac", - "includePath": [ - "${workspaceFolder}/**" - ], - "defines": [], - "macFrameworkPath": [ - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" - ], - "compilerPath": "/usr/bin/clang", - "intelliSenseMode": "macos-clang-x64", - "cStandard": "c11", - "cppStandard": "c++11" - } - ], - "version": 4 -} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index a65266f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "g++ - Build and debug", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/bin/coffee_crisis_macos_debug", - "args": [], - "stopAtEntry": false, - "cwd": "${workspaceFolder}/bin", - "environment": [], - "externalConsole": false, - "MIMode": "lldb", - "preLaunchTask": "C/C++: g++ build" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 0801ee1..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "files.associations": { - "cstddef": "cpp", - "__tuple": "cpp", - "array": "cpp", - "algorithm": "cpp", - "__bit_reference": "cpp", - "__hash_table": "cpp", - "__split_buffer": "cpp", - "initializer_list": "cpp", - "iterator": "cpp", - "string": "cpp", - "string_view": "cpp", - "unordered_map": "cpp", - "vector": "cpp", - "iosfwd": "cpp", - "stdexcept": "cpp" - } -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index f74ab57..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "type": "shell", - "label": "C/C++: g++ build", - "command": "/usr/bin/g++", - "args": [ - "-g", - "${workspaceFolder}/source/*.cpp", - "-std=c++11", - "-Wall", - "-O2", - "-lSDL2", - "-o", - "${workspaceFolder}/bin/coffee_crisis_macos_debug" - ], - "options": { - "cwd": "${workspaceFolder}" - }, - "problemMatcher": [ - "$gcc" - ], - "group": { - "kind": "build", - "isDefault": true - }, - "detail": "compiler: /usr/bin/g++" - } - ] -} \ No newline at end of file