123456789101112131415161718192021222324252627282930313233343536 |
- // Modifications Copyright 2018-current Getnamo. All Rights Reserved
- // Copyright 2014 Vladimir Alyamkin. All Rights Reserved.
- using System.IO;
- namespace UnrealBuildTool.Rules
- {
- public class SIOJson : ModuleRules
- {
- public SIOJson(ReadOnlyTargetRules Target) : base(Target)
- {
- PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
- PrivateIncludePaths.AddRange(
- new string[] {
- "SIOJson/Private",
- // ... add other private include paths required here ...
- });
- PublicDependencyModuleNames.AddRange(
- new string[]
- {
- "Core",
- "CoreUObject",
- "Engine",
- "HTTP",
- "Json",
- "JsonUtilities",
- "CoreUtility"
- // ... add other public dependencies that you statically link with here ...
- });
- }
- }
- }
|