コード例 #1
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public override void Deploy(UEBuildDeployTarget Target)
 {
 }
コード例 #2
0
ファイル: UEBuildTVOS.cs プロジェクト: IvanYangYangXi/UE4-GW
 public override void Deploy(UEBuildDeployTarget Target)
 {
     new UEDeployTVOS().PrepTargetForDeployment(Target);
 }
コード例 #3
0
 public override bool PrepTargetForDeployment(UEBuildDeployTarget InTarget)
 {
     // @todo Lumin: Need to create a MabuFile with no data files - including the executable!!
     return(true);
 }
コード例 #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);
 }
コード例 #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);
 }
コード例 #6
0
ファイル: UEBuildLumin.cs プロジェクト: zfa07/Killyouss
 /// <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);
 }
コード例 #7
0
 /// <summary>
 /// Deploys the given target
 /// </summary>
 /// <param name="Target">Information about the target being deployed</param>
 public abstract void Deploy(UEBuildDeployTarget Target);
コード例 #8
0
 public override bool PrepTargetForDeployment(UEBuildDeployTarget InTarget)
 {
     Log.TraceInformation("Deploying now!");
     return(true);
 }
コード例 #9
0
 /// <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);
 }