You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-112221 #rb josh.adams #preflight 6064944bf8bd0000016c5637 [CL 15919434 by christopher waters in ue5-main branch]
31 lines
648 B
C#
31 lines
648 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
using UnrealBuildTool;
|
|
|
|
public class DirectSound : ModuleRules
|
|
{
|
|
public DirectSound(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
string DirectXSDKDir = Target.UEThirdPartySourceDirectory + "Windows/DirectX";
|
|
|
|
string LibDir = null;
|
|
if (Target.Platform == UnrealTargetPlatform.Win64)
|
|
{
|
|
LibDir = DirectXSDKDir + "/Lib/x64/";
|
|
}
|
|
|
|
if (LibDir != null)
|
|
{
|
|
PublicSystemIncludePaths.Add(DirectXSDKDir + "/include");
|
|
|
|
PublicAdditionalLibraries.AddRange(
|
|
new string[] {
|
|
LibDir + "dxguid.lib",
|
|
LibDir + "dsound.lib"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|