Murray Campbell 7 anni fa
parent
commit
d17c323f98
1 ha cambiato i file con 21 aggiunte e 2 eliminazioni
  1. 21 2
      projects/VSCode/.vscode/tasks.json

+ 21 - 2
projects/VSCode/.vscode/tasks.json

@@ -33,18 +33,37 @@
                 "RAYLIB_PATH=<path_to_raylib>",
                 "DEBUGGING=TRUE"
             ],
+            "group": "build"
+        },
+        {
+            "label": "(OSX) build release",
+            "type": "process",
+            "command": "make",
+            "args": [
+                "PLATFORM=PLATFORM_DESKTOP",
+                "RAYLIB_PATH=<path_to_raylib>",
+            ],
+            "group": "build"
+        },
+        {
+            "label": "(GNU) build debug",
+            "type": "process",
+            "command": "make",
+            "args": [
+                "PLATFORM=PLATFORM_DESKTOP",
+                "DEBUGGING=TRUE"
+            ],
             "group": {
                 "kind": "build",
                 "isDefault": true
             }
         },
         {
-            "label": "(OSX) build release",
+            "label": "(GNU) build release",
             "type": "process",
             "command": "make",
             "args": [
                 "PLATFORM=PLATFORM_DESKTOP",
-                "RAYLIB_PATH=<path_to_raylib>",
             ],
             "group": "build"
         }