You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Modifications were made to support console compilation and remove the support for the Expects and Ensures macro. #jira UE-220767 #rb Yoan.StAmant [CL 35748538 by patrick boutot in ue5-main branch]
24 lines
858 B
C#
24 lines
858 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
public class GuidelinesSupportLibrary : ModuleRules
|
|
{
|
|
public GuidelinesSupportLibrary(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
// Modification made by epic to gsl/assert and gsl/pointers.
|
|
//See comments with @epic.
|
|
//Use the 4.0.0 + bug fix (1144) from the Microsoft implementation.
|
|
string GuidelinesSupportLibraryVersionDir = "GSL-1144";
|
|
|
|
string GuidelinesSupportLibraryPath = Path.Combine(Target.UEThirdPartySourceDirectory, "GuidelinesSupportLibrary", GuidelinesSupportLibraryVersionDir);
|
|
string GuidelinesSupportLibraryIncludePath = Path.Combine(GuidelinesSupportLibraryPath, "include");
|
|
|
|
PublicSystemIncludePaths.Add(GuidelinesSupportLibraryIncludePath);
|
|
PublicDefinitions.Add("GSL_NO_IOSTREAMS");
|
|
}
|
|
}
|