mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 07:59:42 +00:00
128 lines
2.9 KiB
JSON
128 lines
2.9 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "linux clean build",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "make clean && ./configure && make -j12"
|
|
},
|
|
{
|
|
"label": "linux clean",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "make clean"
|
|
},
|
|
{
|
|
"label": "linux build with debug symbols",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "DEBUG=1 make -j12"
|
|
},
|
|
{
|
|
"label": "linux build",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "make -j12"
|
|
},
|
|
{
|
|
"label": "linux build and run",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "make -j12 && ./retroarch -v"
|
|
},
|
|
{
|
|
"label": "linux build and run with debug symbols",
|
|
"type": "shell",
|
|
"group": "build",
|
|
"command": "DEBUG=1 make -j12 && ./retroarch -v"
|
|
},
|
|
{
|
|
"label": "msys2-mingw64 build",
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
|
|
"command": "./configure; make -j2",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "msys2-mingw64 build with debug symbols",
|
|
"type": "shell",
|
|
|
|
"group": "build",
|
|
|
|
"command": "./configure; DEBUG=1 make -j2",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "msys2-mingw64 rebuild",
|
|
"type": "shell",
|
|
|
|
"group": "build",
|
|
|
|
"command": "make -j2",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "msys2-mingw64 clean",
|
|
"type": "shell",
|
|
|
|
"group": "build",
|
|
|
|
"command": "make clean",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "msys2-mingw64 run",
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true },
|
|
|
|
"command": "./retroarch -v",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |