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 BlockEncryptionHandlerComponent : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public BlockEncryptionHandlerComponent(TargetInfo Target)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"PacketHandler",
|
|
|
|
|
"XORBlockEncryptor",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
CircularlyReferencedDependentModules.Add("XORBlockEncryptor");
|
|
|
|
|
|
|
|
|
|
if ((Target.Platform == UnrealTargetPlatform.Win64) ||
|
|
|
|
|
(Target.Platform == UnrealTargetPlatform.Win32))
|
|
|
|
|
{
|
|
|
|
|
AddThirdPartyPrivateStaticDependencies(Target,
|
|
|
|
|
"CryptoPP"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PublicIncludePathModuleNames.Add("CryptoPP");
|
|
|
|
|
|
2015-12-04 09:32:58 -05:00
|
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
2015-07-15 15:04:08 -04:00
|
|
|
}
|
|
|
|
|
}
|