You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Joe.Kirchoff #preflight skip (trivial) [CL 19908019 by Yuriy ODonnell in ue5-main branch]
19 lines
292 B
C#
19 lines
292 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class zstd : ModuleRules
|
|
{
|
|
public zstd(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
if (!IsVcPackageSupported)
|
|
{
|
|
return;
|
|
}
|
|
|
|
AddVcPackage("zstd", true, "zstd");
|
|
}
|
|
}
|