Files
UnrealEngine/Engine/Source/Programs/UnrealBuildTool/ProjectFiles/CLion/CLionGenerator.cs
2025-05-18 13:04:45 +08: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)
{
}
}
}