Files
lorry li 5534a40627 Remove the RapidJSON version in public ThirdParty folder;
Move the internal later version of RapidJSON, to public ThirdParty folder.

#jira UE-199549
[REVIEW] [at]michael.kirzinger [at]nick.edwards [at]rafa.lecina [at]steve.robb [at]andrew.scheidecker


#rb Markus.Breyer
#tests Tried to run the PC version

[CL 30729660 by lorry li in ue5-main branch]
2024-01-19 17:01:07 -05:00

15 lines
336 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class RapidJSON : ModuleRules
{
public RapidJSON(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
PublicSystemIncludePaths.Add(Path.Combine(Target.UEThirdPartySourceDirectory, "RapidJSON", "1.1.0"));
}
}