Hey guys im trying to compile using VS code rather then the UE4 Editor as Sam did in the video.
but im getting this error:
/usr/bin/bash: EngineBuildBatchFilesBuild.bat: command not found
im using this command:
Shift + Ctrl + B > SimpleShooterEditor Win64 Debug Build
heres what my ‘tasks.json’ looks like:
{
"label": "SimpleShooterEditor Win64 Debug Build",
"group": "build",
"command": "Engine\\Build\\BatchFiles\\Build.bat",
"args": [
"SimpleShooterEditor",
"Win64",
"Debug",
"E:\\200529 - cpp unreal\\SimpleShooter\\SimpleShooter\\SimpleShooter.uproject",
"-waitmutex"
],
"problemMatcher": "$msCompile",
"type": "shell",
"options": {
"cwd": "C:\\Program Files\\UE_4.25"
}
},
any suggestions?