You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
709 B
C#
22 lines
709 B
C#
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
namespace UnrealBuildTool
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Description of a project build configuration provided during project generation by ProjectFile.
|
|||
|
|
/// </summary>
|
|||
|
|
/// <seealso cref="PlatformProjectGenerator.GetVisualStudioTargetsString"/>
|
|||
|
|
public abstract class ProjectBuildConfiguration
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Name of the build configuration as displayed in the IDE e.g. Debug_Client.
|
|||
|
|
/// </summary>
|
|||
|
|
public abstract string ConfigurationName { get; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Build command associated with this build configuration (as generated by classes derived from ProjectFile).
|
|||
|
|
/// </summary>
|
|||
|
|
public abstract string BuildCommand { get; }
|
|||
|
|
}
|
|||
|
|
}
|