diff --git a/.gitignore b/.gitignore index 002a62a..1680373 100644 --- a/.gitignore +++ b/.gitignore @@ -16,4 +16,3 @@ # unignore dotfiles that we'd like to keep !/.github/ -!/.vscode/ diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index da30dab..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": "2.0.0", - "configurations": [ - { - "name": "(lldb) debug project", - "type": "lldb", - "request": "launch", - "env": { - "DEBUG": "1", - "ASAN_OPTIONS": "detect_leaks=0", - "UBSAN_OPTIONS": "print_stacktrace=1:halt_on_error=1" - }, - "program": "", - "linux": { - "preLaunchTask": "(dbg) compile linux-x86_64", - "program": "${workspaceFolder}/bin/linux-x86_64/dbg/${workspaceFolderBasename}", - "cwd": "${workspaceFolder}/bin/linux-x86_64/dbg/" - }, - "windows": { - "preLaunchTask": "(dbg) compile win-x86_64", - "program": "${workspaceFolder}/bin/linux-x86_64/dbg/${workspaceFolderBasename}.exe", - "cwd": "${workspaceFolder}/bin/win-x86_64/dbg/" - } - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 5567efe..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "(dbg) compile linux-x86_64", - "type": "shell", - "command": "DEBUG=1 make linux-x86_64" - }, - { - "label": "(dbg) compile win-x86_64", - "type": "shell", - "command": "DEBUG=1 make win-x86_64" - } - ] -}