Files
UnrealEngine/Engine/Source/Programs/UnrealBuildTool/ProjectFiles/CLion/CLionGenerator.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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)
{
}
}
}