Quellcode durchsuchen

Merge pull request #4 from MurrayIRC/patch-4

Added OSX build tasks
pull/637/head
Murray Campbell vor 6 Jahren
committed von GitHub
Ursprung
Commit
f97bb085bf
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden GPG-Schlüssel-ID: 4AEE18F83AFDEB23
1 geänderte Dateien mit 25 neuen und 6 gelöschten Zeilen
  1. +25
    -6
      projects/VSCode/.vscode/tasks.json

+ 25
- 6
projects/VSCode/.vscode/tasks.json Datei anzeigen

@ -4,30 +4,49 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "build release",
"label": "(WIN) build release",
"type": "process", "type": "process",
"command": "C:/raylib/mingw/bin/mingw32-make.exe", "command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [ "args": [
"PLATFORM=PLATFORM_DESKTOP", "PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=C:/raylib/raylib", "RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=game",
], ],
"group": "build" "group": "build"
}, },
{ {
"label": "build debug",
"label": "(WIN) build debug",
"type": "process", "type": "process",
"command": "C:/raylib/mingw/bin/mingw32-make.exe", "command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [ "args": [
"PLATFORM=PLATFORM_DESKTOP", "PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=C:/raylib/raylib", "RAYLIB_PATH=C:/raylib/raylib",
"PROJECT_NAME=game",
"DEBUGGING=TRUE",
"DEBUGGING=TRUE"
],
"group": "build"
},
{
"label": "(OSX) build debug",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=<path_to_raylib>",
"DEBUGGING=TRUE"
], ],
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
} }
},
{
"label": "(OSX) build release",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=<path_to_raylib>",
],
"group": "build"
} }
] ]
}
}

Laden…
Abbrechen
Speichern