You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
27 lines
696 B
C#
27 lines
696 B
C#
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class OpenSubdiv : ModuleRules
|
|
{
|
|
public OpenSubdiv(TargetInfo Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
// Compile and link with kissFFT
|
|
string OpenSubdivPath = UEBuildConfiguration.UEThirdPartySourceDirectory + "OpenSubdiv/3.0.0";
|
|
|
|
PublicIncludePaths.Add( OpenSubdivPath + "/opensubdiv" );
|
|
|
|
// @todo subdiv: Add other platforms and debug builds
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
PublicLibraryPaths.Add(OpenSubdivPath + "/lib/RelWithDebInfo");
|
|
PublicAdditionalLibraries.Add("osdCPU.lib");
|
|
}
|
|
else if (Target.Platform == UnrealTargetPlatform.Mac)
|
|
{
|
|
}
|
|
}
|
|
}
|