Bladeren bron

Added OSX build tasks

Users will have to specify their personal installation of raylib.
pull/637/head^2
Murray Campbell 6 jaren geleden
committed by GitHub
bovenliggende
commit
921e4eaa87
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: 4AEE18F83AFDEB23
1 gewijzigde bestanden met toevoegingen van 25 en 6 verwijderingen
  1. +25
    -6
      projects/VSCode/.vscode/tasks.json

+ 25
- 6
projects/VSCode/.vscode/tasks.json Bestand weergeven

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

Laden…
Annuleren
Opslaan