Skip to content

Instantly share code, notes, and snippets.

@daemon3000
Created June 16, 2018 11:39
Show Gist options
  • Save daemon3000/24373f7fbe6dee99e1fb31cc188673e9 to your computer and use it in GitHub Desktop.
Save daemon3000/24373f7fbe6dee99e1fb31cc188673e9 to your computer and use it in GitHub Desktop.
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Development Editor Win64",
"command": "${config:UE4_Root}/Build/BatchFiles/Build.bat",
"type": "shell",
"args": [
"${workspaceRootFolderName}Editor",
"Win64",
"Development",
"'${workspaceRoot}/${workspaceRootFolderName}.uproject'",
"-waitmutex"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": {
"pattern": {
"regexp": "^(.*)\\((\\d*)\\): (\\w*) (.*)$",
"file": 1,
"line": 2,
"severity": 3,
"message": 4,
"column": 0
}
}
},
{
"label": "Regenerate Project Files",
"command": "${config:UE4_Root}/Binaries/DotNET/UnrealBuildTool.exe",
"type": "shell",
"args": [
"-projectfiles",
"-project='${workspaceRoot}/${workspaceRootFolderName}.uproject'",
"-game",
"-rocket",
"-progress"
],
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment