Skip to content

Commit 77a4b6a

Browse files
committed
fix: update tasks to work with SDL2 library
1 parent 8ccbe2b commit 77a4b6a

File tree

1 file changed

+32
-5
lines changed

1 file changed

+32
-5
lines changed

.vscode/tasks.json

+32-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"& (mkdir \"${workspaceFolder}\\libs\\bin\\Release\")"
99
],
1010
"group": {"kind": "build", "isDefault": false},
11-
"label": "Create \\libs\\obj\\Release and \\libs\\bin\\Release folders",
11+
"label": "Create `\\libs\\obj\\Release` and `\\libs\\bin\\Release` folders",
1212
"type": "shell"
1313
},
1414
{
@@ -23,20 +23,47 @@
2323
"group": {"kind": "build", "isDefault": false},
2424
"label": "Compile libs project",
2525
"type": "shell",
26-
"dependsOn": "Create \\libs\\obj\\Release and \\libs\\bin\\Release folders"
26+
"dependsOn": "Create `\\libs\\obj\\Release` and `\\libs\\bin\\Release` folders"
27+
},
28+
{
29+
"command": [
30+
"(if exist \"${workspaceFolder}\\src\\obj\" rmdir /s /q \"${workspaceFolder}\\src\\obj\")",
31+
"& (mkdir \"${workspaceFolder}\\src\\obj\\Release\")",
32+
"& (if exist \"${workspaceFolder}\\src\\bin\" rmdir /s /q \"${workspaceFolder}\\src\\bin\")",
33+
"& (mkdir \"${workspaceFolder}\\src\\bin\\Release\")"
34+
],
35+
"group": {"kind": "build", "isDefault": false},
36+
"label": "Create `\\src\\obj\\Release` and `\\src\\bin\\Release` folders",
37+
"type": "shell"
38+
},
39+
{
40+
"command": "copy \"${workspaceFolder}\\src\\SDL2.dll\" \"${workspaceFolder}\\src\\bin\\Release\\SDL2.dll\"",
41+
"dependsOn": "Create `\\src\\obj\\Release` and `\\src\\bin\\Release` folders",
42+
"group": {"kind": "build", "isDefault": false},
43+
"label": "Copy `SDL2.dll` file from `.\\src\\` into `.\\src\\bin\\Release\\",
44+
"type": "shell"
2745
},
2846
{
2947
"args": [
3048
"-fdiagnostics-color=always",
3149
"-g",
32-
"${file}",
50+
"${workspaceFolder}\\src\\*.c",
51+
"${workspaceFolder}\\src\\sdl\\*.c",
3352
"-o",
34-
"${fileDirname}\\bin\\Release\\${fileBasenameNoExtension}.exe",
53+
"${workspaceFolder}\\src\\bin\\Release\\src.exe",
54+
"-I${workspaceFolder}\\src\\sdl\\SDL2\\include\\SDL2",
55+
"-I${workspaceFolder}\\src\\sdl\\SDL2\\include",
56+
"-L${workspaceFolder}\\src\\sdl\\SDL2\\lib",
57+
"-lSDL2",
58+
"-lSDL2main",
3559
"-s",
3660
"${workspaceFolder}\\libs\\bin\\Release\\libs.a"
3761
],
3862
"command": "gcc",
39-
"dependsOn": "Compile libs project",
63+
"dependsOn": [
64+
"Compile libs project",
65+
"Copy `SDL2.dll` file from `.\\src\\` into `.\\src\\bin\\Release\\"
66+
],
4067
"group": {"kind": "build", "isDefault": true},
4168
"label": "C/C++: gcc.exe build active file",
4269
"problemMatcher": ["$gcc"],

0 commit comments

Comments
 (0)