-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathlaunch.json
40 lines (40 loc) · 1.15 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"configurations": [
{
"name": "TrenchFold",
"type": "lua-local",
"request": "launch",
"stopOnEntry": false,
"verbose": false,
"internalConsoleOptions": "openOnSessionStart",
"program": {
"lua": "lua5.1",
"file": "trenchfold/cli.lua",
},
"args": ["example/maps/level", "level"]
},
{
"name": "Defold Kit",
"type": "lua-local",
"request": "launch",
"stopOnEntry": false,
"verbose": false,
"internalConsoleOptions": "openOnSessionStart",
"program": {
"command": "build/defoldkit/dmengine"
},
"args": [
"build/defoldkit/game.projectc"
],
"windows": {
"program": {
"command": "build\\defoldkit\\dmengine.exe"
},
"args": [
"build\\defoldkit\\game.projectc"
]
},
"preLaunchTask": "Defold Kit: Build to Launch"
}
]
}