mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
dbe6af08dd
add c properties add ming32 config too rename tasks to allow other targets
91 lines
2.0 KiB
JSON
91 lines
2.0 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "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"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
{
|
|
"taskName": "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"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
{
|
|
"taskName": "msys2-mingw64 rebuild",
|
|
"type": "shell",
|
|
|
|
"group": "build",
|
|
|
|
"command": "make -j2",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
{
|
|
"taskName": "msys2-mingw64 clean",
|
|
"type": "shell",
|
|
|
|
"group": "build",
|
|
|
|
"command": "make clean",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
{
|
|
"taskName": "msys2-mingw64 run",
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true },
|
|
|
|
"command": "./retroarch -v",
|
|
"options": {
|
|
"shell": {
|
|
"executable": "C:\\msys64\\usr\\bin\\bash.exe",
|
|
"args": [
|
|
"-c"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |