In the plugin.lua file you will see the following snippet. The cmd table contains all the command line arguments.
function getLaunchCommandDebug(args) local path = args.options["Simulator Path"] if(MAC) then path = path.."/Contents/MacOS/Corona Simulator" end local response = { cmd = { path, "-project", args.buildFolder.."/main.lua", "-debug", "1", "-no-console YES" }, dir = args.buildFolder, } return response end
Regards,
M.Y. Developers