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-01 11:43:41 +08:00
|
|
|
|
if (developmentBuild)
|
|
|
|
|
{
|
|
|
|
|
scriptCompilationSettings.options |= ScriptCompilationOptions.DevelopmentBuild;
|
|
|
|
|
}
|
2022-09-22 08:56:07 +08:00
|
|
|
|
Directory.CreateDirectory(buildDir);
|
|
|
|
|
ScriptCompilationResult scriptCompilationResult = PlayerBuildInterface.CompilePlayerScripts(scriptCompilationSettings, buildDir);
|
|
|
|
|
foreach (var ass in scriptCompilationResult.assemblies)
|
|
|
|
|
{
|
|
|
|
|
//Debug.LogFormat("compile assemblies:{1}/{0}", ass, buildDir);
|
|
|
|
|
}
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 14:26:28 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/Android", priority = 202)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllAndroid()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.Android);
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-23 14:26:28 +08:00
|
|
|
|
[MenuItem("HybridCLR/CompileDll/IOS", priority = 203)]
|
2022-09-22 08:56:07 +08:00
|
|
|
|
public static void CompileDllIOS()
|
|
|
|
|
{
|
|
|
|
|
CompileDll(BuildTarget.iOS);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|