summaryrefslogtreecommitdiffhomepage
path: root/projects/VSCode/.vscode/tasks.json
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-04-13 12:07:05 +0200
committerraysan5 <[email protected]>2020-04-13 12:07:05 +0200
commiteb04be8141c5e70f99d8104c44a61fb71779a55a (patch)
treedbd168f186fff2e7e281e48cfd7c258fbf06ab09 /projects/VSCode/.vscode/tasks.json
parentc21e9a721b5d417396e117c8e074db4767e32758 (diff)
downloadraylib-eb04be8141c5e70f99d8104c44a61fb71779a55a.tar.gz
raylib-eb04be8141c5e70f99d8104c44a61fb71779a55a.zip
Review VSCode tasks
Diffstat (limited to 'projects/VSCode/.vscode/tasks.json')
-rw-r--r--projects/VSCode/.vscode/tasks.json10
1 files changed, 9 insertions, 1 deletions
diff --git a/projects/VSCode/.vscode/tasks.json b/projects/VSCode/.vscode/tasks.json
index cf5905f8..989e13b0 100644
--- a/projects/VSCode/.vscode/tasks.json
+++ b/projects/VSCode/.vscode/tasks.json
@@ -16,11 +16,16 @@
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
+ "OBJS=${fileBasenameNoExtension}.c",
+ "BUILD_MODE=DEBUG"
],
},
"osx": {
"args": [
- "RAYLIB_PATH=<path_to_raylib>/raylib"
+ "RAYLIB_PATH=<path_to_raylib>/raylib",
+ "PROJECT_NAME=${fileBasenameNoExtension}",
+ "OBJS=${fileBasenameNoExtension}.c",
+ "BUILD_MODE=DEBUG"
],
},
"group": {
@@ -43,11 +48,14 @@
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=${fileBasenameNoExtension}",
+ "OBJS=${fileBasenameNoExtension}.c"
],
},
"osx": {
"args": [
"RAYLIB_PATH=<path_to_raylib>/raylib",
+ "PROJECT_NAME=${fileBasenameNoExtension}",
+ "OBJS=${fileBasenameNoExtension}.c"
],
},
"group": "build",