35 lines
832 B
C#
35 lines
832 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
using Flax.Build;
|
|
|
|
/// <summary>
|
|
/// FlaxEngine.Tests project build configuration.
|
|
/// </summary>
|
|
public class FlaxEngineTestsTarget : Target
|
|
{
|
|
/// <inheritdoc />
|
|
public FlaxEngineTestsTarget()
|
|
{
|
|
Name = ProjectName = OutputName = "FlaxEngine.Tests";
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Init()
|
|
{
|
|
base.Init();
|
|
|
|
Type = TargetType.DotNet;
|
|
OutputType = TargetOutputType.Library;
|
|
Platforms = new[]
|
|
{
|
|
TargetPlatform.Windows,
|
|
};
|
|
Configurations = new[]
|
|
{
|
|
TargetConfiguration.Debug,
|
|
TargetConfiguration.Release,
|
|
};
|
|
CustomExternalProjectFilePath = System.IO.Path.Combine(FolderPath, "FlaxEngine.Tests.csproj");
|
|
}
|
|
}
|