2016-01-07 08:17:16 -05:00
|
|
|
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
2015-07-15 15:04:08 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
public class StreamEncryptionHandlerComponent : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public StreamEncryptionHandlerComponent(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"PacketHandler",
|
|
|
|
|
"XORStreamEncryptor"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
CircularlyReferencedDependentModules.Add("XORStreamEncryptor");
|
|
|
|
|
|
|
|
|
|
if ((Target.Platform == UnrealTargetPlatform.Win64) ||
|
|
|
|
|
(Target.Platform == UnrealTargetPlatform.Win32))
|
|
|
|
|
{
|
2016-02-03 15:40:40 -05:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target,
|
2015-07-15 15:04:08 -04:00
|
|
|
"CryptoPP"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PublicIncludePathModuleNames.Add("CryptoPP");
|
2015-12-04 09:32:58 -05:00
|
|
|
|
|
|
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
2015-07-15 15:04:08 -04:00
|
|
|
}
|
|
|
|
|
}
|