mirror of
https://github.com/BlackMATov/evolved.lua.git
synced 2025-12-13 19:48:00 +07:00
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch Evolved All (lua5.1)",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "lua5.1",
|
|
"file": "${workspaceFolder}/develop/all.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved All (lua5.4)",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "lua5.4",
|
|
"file": "${workspaceFolder}/develop/all.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved All (luajit)",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"lua": "luajit",
|
|
"file": "${workspaceFolder}/develop/all.lua"
|
|
}
|
|
},
|
|
{
|
|
"name": "Launch Evolved Example (LÖVE)",
|
|
"type": "lua-local",
|
|
"request": "launch",
|
|
"program": {
|
|
"command": "love"
|
|
},
|
|
"args": [
|
|
"${workspaceFolder}/example"
|
|
]
|
|
}
|
|
]
|
|
}
|