瀏覽代碼

Update tasks.json

pull/675/head^2
Murray Campbell 6 年之前
committed by GitHub
父節點
當前提交
411b2827a8
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 24 行新增44 行删除
  1. +24
    -44
      projects/VSCode/.vscode/tasks.json

+ 24
- 44
projects/VSCode/.vscode/tasks.json 查看文件

@ -4,67 +4,47 @@
"version": "2.0.0",
"tasks": [
{
"label": "(WIN) build release",
"type": "process",
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=C:/raylib/raylib",
],
"group": "build"
},
{
"label": "(WIN) build debug",
"type": "process",
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"RAYLIB_PATH=C:/raylib/raylib",
"DEBUGGING=TRUE"
],
"group": "build"
},
{
"label": "(OSX) build debug",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"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",
"label": "build debug",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
"DEBUGGING=TRUE"
],
"windows": {
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib"
],
},
"osx": {
"args": [
"RAYLIB_PATH=/Users/murray/work/ray/raylib"
],
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "(GNU) build release",
"label": "build release",
"type": "process",
"command": "make",
"args": [
"PLATFORM=PLATFORM_DESKTOP",
],
"windows": {
"command": "C:/raylib/mingw/bin/mingw32-make.exe",
"args": [
"RAYLIB_PATH=C:/raylib/raylib",
],
},
"osx": {
"args": [
"RAYLIB_PATH=/Users/murray/work/ray/raylib",
],
},
"group": "build"
}
]

Loading…
取消
儲存