23 lines
478 B
Lua
23 lines
478 B
Lua
local config = require "core.config"
|
|
|
|
config.plugins.jpdebug = {
|
|
targets = {
|
|
["test - msys"] = {
|
|
type = "shell",
|
|
cmd = {"C:\\msys64\\ucrt64\\bin\\lua.exe", "test.lua"}
|
|
},
|
|
["test"] = {
|
|
type = "shell",
|
|
cmd = {"lua", "test.lua"}
|
|
},
|
|
["luadebug"] = {
|
|
type = "luadebug",
|
|
entry = "test.lua",
|
|
cwd = ".",
|
|
-- lua = {"lua"},
|
|
lua = {"C:\\msys64\\ucrt64\\bin\\lua.exe"},
|
|
},
|
|
},
|
|
default_target = "luadebug"
|
|
}
|