Files
UnrealEngine/Engine/Source/ThirdParty/Intel/VTune/IntelVTune.Build.cs
2025-05-18 13:04:45 +08:00

24 lines
604 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class IntelVTune : ModuleRules
{
public IntelVTune(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
string IntelVTunePath = Target.UEThirdPartySourceDirectory + "Intel/VTune/VTune-2023/";
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
{
string PlatformName = "Win64";
PublicSystemIncludePaths.Add(IntelVTunePath + "include/");
string LibDir = IntelVTunePath + "lib/" + PlatformName + "/";
PublicAdditionalLibraries.Add(LibDir + "libittnotify.lib");
}
}
}