AronaSlate/Source/VST_SDK/VST.Build.cs
2024-01-25 11:21:15 +08:00

27 lines
477 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
using UnrealBuildTool;
public class VST : ModuleRules
{
public VST(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
PublicIncludePaths.Add(ModuleDirectory);
if (Target.Platform == UnrealTargetPlatform.Mac)
{
PrivateDefinitions.AddRange(new []
{
"TARGET_API_MAC_CARBON",
});
}
PublicDefinitions.AddRange(new []
{
"_CRT_SECURE_NO_WARNINGS"
});
}
}