You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 642a82f389339023eb61b540 #rnx #fyi Thomas.Engel [CL 24889800 by Jens Petersam in ue5-main branch]
22 lines
560 B
C#
22 lines
560 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using System;
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
public class ProResLib : ModuleRules
|
|
{
|
|
public ProResLib(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
string IncPath = Path.Combine(ModuleDirectory, "include");
|
|
PublicSystemIncludePaths.Add(IncPath);
|
|
|
|
string LibPath = Path.Combine(ModuleDirectory, "lib", "windows");
|
|
PublicAdditionalLibraries.Add(Path.Combine(LibPath, "ProRes64_VS2017.lib"));
|
|
}
|
|
}
|
|
}
|