mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 19:25:42 +00:00
134 lines
3.3 KiB
C#
Executable file
134 lines
3.3 KiB
C#
Executable file
#load CakeScripts\GAssembly.cs
|
|
#load CakeScripts\Settings.cs
|
|
#addin "Cake.FileHelpers"
|
|
#addin "Cake.Incubator"
|
|
|
|
// VARS
|
|
|
|
Settings.Cake = Context;
|
|
Settings.BuildTarget = Argument("BuildTarget", "Default");
|
|
Settings.Assembly = Argument("Assembly", "");
|
|
|
|
var msbuildsettings = new DotNetCoreMSBuildSettings();
|
|
var list = new List<GAssembly>();
|
|
|
|
// TASKS
|
|
|
|
Task("Init")
|
|
.Does(() =>
|
|
{
|
|
// Assign some common properties
|
|
msbuildsettings = msbuildsettings.WithProperty("Version", "3.22.24.7");
|
|
msbuildsettings = msbuildsettings.WithProperty("Authors", "'GtkSharp Contributors'");
|
|
msbuildsettings = msbuildsettings.WithProperty("PackageLicenseUrl", "'https://github.com/cra0zy/GtkSharp/blob/cakecore/LICENSE'");
|
|
|
|
// Add stuff to list
|
|
Settings.Init();
|
|
foreach(var gassembly in Settings.AssemblyList)
|
|
if(string.IsNullOrEmpty(Settings.Assembly) || Settings.Assembly == gassembly.Name)
|
|
list.Add(gassembly);
|
|
});
|
|
|
|
Task("Prepare")
|
|
.IsDependentOn("Clean")
|
|
.Does(() =>
|
|
{
|
|
// Build tools
|
|
DotNetCoreRestore("Source/Tools/Tools.sln");
|
|
MSBuild("Source/Tools/Tools.sln", new MSBuildSettings {
|
|
Verbosity = Verbosity.Minimal,
|
|
Configuration = "Release",
|
|
});
|
|
|
|
// Generate code and prepare libs projects
|
|
foreach(var gassembly in list)
|
|
gassembly.Prepare();
|
|
DotNetCoreRestore("Source/Libs/GtkSharp.sln");
|
|
});
|
|
|
|
Task("GenerateLinuxStubs")
|
|
.IsDependentOn("Init")
|
|
.Does(() =>
|
|
{
|
|
CreateDirectory("BuildOutput/LinuxStubs");
|
|
System.IO.Directory.SetCurrentDirectory("BuildOutput/LinuxStubs");
|
|
FileWriteText("empty.c", "");
|
|
foreach(var gassembly in list)
|
|
gassembly.GenerateLinuxStubs();
|
|
System.IO.Directory.SetCurrentDirectory("../..");
|
|
DeleteDirectory("BuildOutput/LinuxStubs", new DeleteDirectorySettings { Recursive = true, Force = true });
|
|
});
|
|
|
|
Task("Clean")
|
|
.IsDependentOn("Init")
|
|
.Does(() =>
|
|
{
|
|
foreach(var gassembly in list)
|
|
gassembly.Clean();
|
|
});
|
|
|
|
Task("FullClean")
|
|
.IsDependentOn("Clean")
|
|
.Does(() =>
|
|
{
|
|
DeleteDirectory("BuildOutput", true);
|
|
});
|
|
|
|
Task("Build")
|
|
.IsDependentOn("Prepare")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetCoreBuildSettings
|
|
{
|
|
Configuration = "Release",
|
|
MSBuildSettings = msbuildsettings
|
|
};
|
|
|
|
if (list.Count == Settings.AssemblyList.Count)
|
|
DotNetCoreBuild("Source/Libs/GtkSharp.sln", settings);
|
|
else
|
|
{
|
|
foreach(var gassembly in list)
|
|
DotNetCoreBuild(gassembly.Csproj, settings);
|
|
}
|
|
});
|
|
|
|
Task("PackageNuGet")
|
|
.IsDependentOn("Build")
|
|
.Does(() =>
|
|
{
|
|
var settings = new DotNetCorePackSettings
|
|
{
|
|
MSBuildSettings = msbuildsettings,
|
|
Configuration = "Release",
|
|
OutputDirectory = "BuildOutput/NugetPackages",
|
|
NoBuild = true,
|
|
|
|
};
|
|
|
|
foreach(var gassembly in list)
|
|
DotNetCorePack(gassembly.Csproj, settings);
|
|
});
|
|
|
|
Task("PackageTemplates")
|
|
.IsDependentOn("Init")
|
|
.Does(() =>
|
|
{
|
|
var settings = new NuGetPackSettings
|
|
{
|
|
BasePath = "Source/Templates/NetCore/GtkSharp.Template.CSharp",
|
|
OutputDirectory = "BuildOutput/NugetPackages"
|
|
};
|
|
|
|
NuGetPack("Source/Templates/NetCore/GtkSharp.Template.CSharp/GtkSharp.Template.CSharp.nuspec", settings);
|
|
});
|
|
|
|
// TASK TARGETS
|
|
|
|
Task("Default")
|
|
.IsDependentOn("Build");
|
|
|
|
// EXECUTION
|
|
|
|
RunTarget(Settings.BuildTarget);
|