Example #1
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public override void Deploy(UEBuildDeployTarget Target)
 {
 }
Example #2
0
 public override void Deploy(UEBuildDeployTarget Target)
 {
     new UEDeployTVOS().PrepTargetForDeployment(Target);
 }
 public override bool PrepTargetForDeployment(UEBuildDeployTarget InTarget)
 {
     // @todo Lumin: Need to create a MabuFile with no data files - including the executable!!
     return(true);
 }
Example #4
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public override void Deploy(UEBuildDeployTarget Target)
 {
     new BaseWindowsDeploy().PrepTargetForDeployment(Target);
 }
Example #5
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public override void Deploy(UEBuildDeployTarget Target)
 {
     // do not package data if building via UBT
     new UEDeployAndroid(Target.ProjectFile, false).PrepTargetForDeployment(Target);
 }
Example #6
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public override void Deploy(UEBuildDeployTarget Target)
 {
     new UEDeployLumin(Target.ProjectFile).PrepTargetForDeployment(Target);
 }
Example #7
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public abstract void Deploy(UEBuildDeployTarget Target);
Example #8
0
 public override bool PrepTargetForDeployment(UEBuildDeployTarget InTarget)
 {
     Log.TraceInformation("Deploying now!");
     return(true);
 }
 /// <summary>
 /// Prepare the target for deployment
 /// </summary>
 /// <param name="InTarget"> The target for deployment</param>
 /// <returns>bool   true if successful, false if not</returns>
 public virtual bool PrepTargetForDeployment(UEBuildDeployTarget InTarget)
 {
     return(true);
 }