Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 702 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 702 Bytes

Cake.Unity

Unity build support for Cake.

This is currently a work in progress and only supports building for Windows.
The API is not in any way final and will change.

Example

#r "tools/Cake.Unity.dll"

Task("Build")
	.Description("Builds the game.")
	.Does(() =>
{
	var projectPath = @"C:\Project\UnityGame";
	var outputPath = @"C:\Output\Game.exe";

	// Build for Windows (x86)
	UnityBuild(projectPath, new WindowsPlatform(outputPath) { 
		NoGraphics = true });

	// Build for Windows (x64)
	UnityBuild(projectPath, new WindowsPlatform(outputPath) { 
		PlatformTarget = UnityPlatformTarget.x64 });
});

RunTarget("Build");