-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'eduke32/master'
- Loading branch information
Showing
15 changed files
with
550 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Debug EDuke32", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/eduke32", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/eduke32.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
}, | ||
{ | ||
"name": "Debug Mapster32", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/mapster32", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/mapster32.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
}, | ||
{ | ||
"name": "Debug VoidSW", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/voidsw", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/voidsw.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
}, | ||
{ | ||
"name": "Debug Wangulator", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/wangulator", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/wangulator.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
}, | ||
{ | ||
"name": "Debug EKenBuild", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/ekenbuild", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/ekenbuild.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
}, | ||
{ | ||
"name": "Debug EKenBuild-Editor", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"linux": { | ||
"program": "${workspaceRoot}/ekenbuild-editor", | ||
}, | ||
"windows": { | ||
"program": "${workspaceRoot}/ekenbuild-editor.exe", | ||
}, | ||
"cwd": "${workspaceRoot}", | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "shell", | ||
"label": "Build EDuke32 and Mapster32 Debug", | ||
"linux": { | ||
"command": "make RELEASE=0", | ||
"details": "GNU Make for Linux" | ||
}, | ||
"windows": { | ||
"command": "mingw32-make.exe RELEASE=0", | ||
"detail": "GNU Make with mingw32 for Windows" | ||
}, | ||
"group": "build", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Build VoidSW and Wangulator Debug", | ||
"linux": { | ||
"command": "make sw RELEASE=0", | ||
"details": "GNU Make for Linux" | ||
}, | ||
"windows": { | ||
"command": "mingw32-make.exe sw RELEASE=0", | ||
"detail": "GNU Make with mingw32 for Windows" | ||
}, | ||
"group": "build", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Build EKenbuild and EKenbuild-Editor Debug", | ||
"linux": { | ||
"command": "make kenbuild RELEASE=0", | ||
"details": "GNU Make for Linux" | ||
}, | ||
"windows": { | ||
"command": "mingw32-make.exe kenbuild RELEASE=0", | ||
"detail": "GNU Make with mingw32 for Windows" | ||
}, | ||
"group": "build", | ||
"problemMatcher": [], | ||
}, | ||
{ | ||
"type": "shell", | ||
"label": "Clean all", | ||
"linux": { | ||
"command": "make clean", | ||
"details": "GNU Make for Linux" | ||
}, | ||
"windows": { | ||
"command": "mingw32-make.exe clean", | ||
"detail": "GNU Make with mingw32 for Windows" | ||
}, | ||
"group": "build", | ||
"problemMatcher": [], | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.