You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Remove parameter for field already included in ModuleRules #rb trivial [CL 16658786 by Joe Kirchoff in ue5-main branch]
26 lines
418 B
C#
26 lines
418 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class Protobuf : ModuleRules
|
|
{
|
|
public Protobuf(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
if (!IsVcPackageSupported)
|
|
{
|
|
return;
|
|
}
|
|
|
|
PublicDependencyModuleNames.Add("zlib");
|
|
|
|
// protobuf
|
|
AddVcPackage("protobuf", true,
|
|
"libprotobuf"
|
|
);
|
|
|
|
PublicDefinitions.Add("WITH_PROTOBUF");
|
|
}
|
|
}
|