소스 검색

Merge pull request #4 from MurrayIRC/patch-4

Added OSX build tasks
pull/637/head
Murray Campbell 6 년 전
committed by GitHub
부모
커밋
f97bb085bf
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일25개의 추가작업 그리고 6개의 파일을 삭제
  1. +25
    -6
      projects/VSCode/.vscode/tasks.json

+ 25
- 6
projects/VSCode/.vscode/tasks.json 파일 보기

@ -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"
}
]
}
}

불러오는 중...
취소
저장