UnrealImGui/Source/ThirdParty/ImGuiLibrary/ImGuiLibrary.Build.cs
Sebastian 865ade48c0 Updated to Unreal Engine 4.16 (backward compatible):
- Replaced obsolete module rules constructors with new versions forwarding read-only target rules to base constructors.
2017-11-05 16:10:03 +00:00

14 lines
258 B
C#

using UnrealBuildTool;
public class ImGuiLibrary : ModuleRules
{
#if WITH_FORWARDED_MODULE_RULES_CTOR
public ImGuiLibrary(ReadOnlyTargetRules Target) : base(Target)
#else
public ImGuiLibrary(TargetInfo Target)
#endif
{
Type = ModuleType.External;
}
}