Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/ProjectFiles/CLion/CLionGenerator.cs
joe kirchoff 36d266e932 UnrealBuildTool: Automated code cleanup
#rnx
#preflight 6476799e947ff6973c225619

[CL 25693241 by joe kirchoff in ue5-main branch]
2023-05-30 18:38:07 -04:00

21 lines
499 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
namespace UnrealBuildTool
{
/// <summary>
/// CLion project file generator which is just the CMakefileGenerator and only here for UBT to match against
/// </summary>
class CLionGenerator : CMakefileGenerator
{
/// <summary>
/// Creates a new instance of the <see cref="CMakefileGenerator"/> class.
/// </summary>
public CLionGenerator(FileReference? InOnlyGameProject)
: base(InOnlyGameProject)
{
}
}
}