You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
C#
79 lines
2.2 KiB
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="BuildAOTAutomation.cs" company="Sirenix IVS">
|
|
// Copyright (c) Sirenix IVS. All rights reserved.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
#if UNITY_EDITOR && UNITY_5_6_OR_NEWER
|
|
|
|
namespace Sirenix.Serialization.Internal
|
|
{
|
|
using Sirenix.Serialization;
|
|
using UnityEditor;
|
|
using UnityEditor.Build;
|
|
using System.IO;
|
|
using System;
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
|
|
using UnityEditor.Build.Reporting;
|
|
|
|
#endif
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
public class PreBuildAOTAutomation : IPreprocessBuildWithReport
|
|
#else
|
|
public class PreBuildAOTAutomation : IPreprocessBuild
|
|
#endif
|
|
{
|
|
public int callbackOrder { get { return -1000; } }
|
|
|
|
public void OnPreprocessBuild(BuildTarget target, string path)
|
|
{
|
|
if (AOTGenerationConfig.Instance.ShouldAutomationGeneration(target))
|
|
{
|
|
AOTGenerationConfig.Instance.ScanProject();
|
|
AOTGenerationConfig.Instance.GenerateDLL();
|
|
}
|
|
}
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
|
|
public void OnPreprocessBuild(BuildReport report)
|
|
{
|
|
this.OnPreprocessBuild(report.summary.platform, report.summary.outputPath);
|
|
}
|
|
|
|
#endif
|
|
}
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
public class PostBuildAOTAutomation : IPostprocessBuildWithReport
|
|
#else
|
|
public class PostBuildAOTAutomation : IPostprocessBuild
|
|
#endif
|
|
{
|
|
public int callbackOrder { get { return -1000; } }
|
|
|
|
public void OnPostprocessBuild(BuildTarget target, string path)
|
|
{
|
|
if (AOTGenerationConfig.Instance.DeleteDllAfterBuilds && AOTGenerationConfig.Instance.ShouldAutomationGeneration(target))
|
|
{
|
|
Directory.Delete(AOTGenerationConfig.Instance.AOTFolderPath, true);
|
|
File.Delete(AOTGenerationConfig.Instance.AOTFolderPath.TrimEnd('/', '\\') + ".meta");
|
|
AssetDatabase.Refresh();
|
|
}
|
|
}
|
|
|
|
#if UNITY_2018_1_OR_NEWER
|
|
|
|
public void OnPostprocessBuild(BuildReport report)
|
|
{
|
|
this.OnPostprocessBuild(report.summary.platform, report.summary.outputPath);
|
|
}
|
|
|
|
#endif
|
|
}
|
|
}
|
|
|
|
#endif // UNITY_EDITOR && UNITY_5_6_OR_NEWER |