Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/ProjectFiles/CLion/CLionGenerator.cs
Marc Audy 0c3be2b6ad Merge Release-Engine-Staging to Test @ CL# 18240298
[CL 18241953 by Marc Audy in ue5-release-engine-test branch]
2021-11-18 14:37:34 -05:00

25 lines
583 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
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)
{
}
}
}