diff --git a/.gitignore b/.gitignore index a5c2d27..3264729 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /bin .DS_Store /Debug/ -*.wav \ No newline at end of file +*.wav +*.dSYM \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 03743e0..9bbff0a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,6 @@ ], "files.associations": { "algorithm": "c" - } + }, + "FSharp.suggestGitignore": false, } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..1f577ce --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,32 @@ +{ + "tasks": [ + { + "type": "cppbuild", + "label": "C/C++: clang сборка активного файла", + "command": "/usr/bin/clang", + "args": [ + "-fcolor-diagnostics", + "-fansi-escape-codes", + "-g", + "${file}", + "${fileDirname}/parser.c", + "-lm", + "-lraylib", + "-o", + "${fileDirname}/bin/${fileBasenameNoExtension}" + ], + "options": { + "cwd": "${fileDirname}" + }, + "problemMatcher": [ + "$gcc" + ], + "group": { + "kind": "build", + "isDefault": true + }, + "detail": "Задача создана отладчиком." + } + ], + "version": "2.0.0" +} \ No newline at end of file