Initial version, load default FEN, displays for 5 seconds and closes

This commit is contained in:
2022-04-14 16:03:32 -04:00
commit 8c7fe707a1
12 changed files with 465 additions and 0 deletions
Vendored Executable
+30
View File
@@ -0,0 +1,30 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ build project",
"command": "/usr/bin/g++",
"args": [
"*.cpp",
"-std=c++1z",
"-fdiagnostics-color=always",
"-g",
"-lSDL2",
"-o",
"./chess"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Task generated by Debugger."
}
],
"version": "2.0.0"
}