2022-09-22 08:56:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEditor.Build.Player;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace HybridCLR.Editor.Commands
|
|
|
|
|
{
|
|
|
|
|
public class CompileDllCommand
|
|
|
|
|
{
|
2023-06-01 11:43:41 +08:00
|
|
|
|
public static void CompileDll(string buildDir, BuildTarget target, bool developmentBuild)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
var group = BuildPipeline.GetBuildTargetGroup(target);
|
|
|
|
|
|
|
|
|
|
ScriptCompilationSettings scriptCompilationSettings = new ScriptCompilationSettings();
|
|
|
|
|
scriptCompilationSettings.group = group;
|
|
|
|
|
scriptCompilationSettings.target = target;
|
2023-06-27 08:58:08 +08:00
|
|
|
|
scriptCompilationSettings.options = developmentBuild ? ScriptCompilationOptions.DevelopmentBuild : ScriptCompilationOptions.None;
|
2022-09-22 08:56:07 +08:00
|
|
|
|
Directory.CreateDirectory(buildDir);
|
|
|
|
|
ScriptCompilationResult scriptCompilationResult = PlayerBuildInterface.CompilePlayerScripts(scriptCompilationSettings, buildDir);
|
2023-06-06 11:28:27 +08:00
|
|
|
|
#if UNITY_2022
|
|
|
|
|
UnityEditor.EditorUtility.ClearProgressBar();
|
|
|
|
|
#endif
|
2022-09-27 14:57:00 +08:00
|
|
|
|
Debug.Log("compile finish!!!");
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 11:43:41 +08:00
|
|
|
|
public static void CompileDll(BuildTarget target, bool developmentBuild = false)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
2023-06-01 11:43:41 +08:00
|
|
|
|
CompileDll(SettingsUtil.GetHotUpdateDllsOutputDirByTarget(target), target, developmentBuild);
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 14:26:28 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/ActiveBuildTarget", priority = 100)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllActiveBuildTarget()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(EditorUserBuildSettings.activeBuildTarget);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-01 11:43:41 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/ActiveBuildTarget_Development", priority = 101)]
|
|
|
|
|
public static void CompileDllActiveBuildTargetDevelopment()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(EditorUserBuildSettings.activeBuildTarget, true);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 14:26:28 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/Win32", priority = 200)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllWin32()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.StandaloneWindows);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 14:26:28 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/Win64", priority = 201)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllWin64()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.StandaloneWindows64);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-15 17:05:46 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/MacOS", priority = 202)]
|
|
|
|
|
public static void CompileDllMacOS()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.StandaloneOSX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[MenuItem("HybridCLR/CompileDll/Linux", priority = 203)]
|
|
|
|
|
public static void CompileDllLinux()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.StandaloneLinux64);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[MenuItem("HybridCLR/CompileDll/Android", priority = 210)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllAndroid()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.Android);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-15 17:05:46 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/IOS", priority = 220)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllIOS()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.iOS);
|
|
|
|
|
}
|
2023-06-15 17:05:46 +08:00
|
|
|
|
|
|
|
|
|
[MenuItem("HybridCLR/CompileDll/WebGL", priority = 230)]
|
|
|
|
|
public static void CompileDllWebGL()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.WebGL);
|
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|