50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
using Flax.Build;
|
|
using Flax.Build.NativeCpp;
|
|
|
|
/// <summary>
|
|
/// https://github.com/zeux/volk
|
|
/// </summary>
|
|
public class volk : ThirdPartyModule
|
|
{
|
|
/// <inheritdoc />
|
|
public override void Init()
|
|
{
|
|
base.Init();
|
|
|
|
LicenseType = LicenseTypes.MIT;
|
|
LicenseFilePath = "LICENSE.txt";
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void Setup(BuildOptions options)
|
|
{
|
|
base.Setup(options);
|
|
|
|
switch (options.Platform.Target)
|
|
{
|
|
case TargetPlatform.Windows:
|
|
options.PublicDefinitions.Add("VK_USE_PLATFORM_WIN32_KHR");
|
|
break;
|
|
case TargetPlatform.Linux:
|
|
options.PrivateDefinitions.Add("VK_USE_PLATFORM_XLIB_KHR");
|
|
break;
|
|
case TargetPlatform.Android:
|
|
options.PublicDefinitions.Add("VK_USE_PLATFORM_ANDROID_KHR");
|
|
break;
|
|
default: throw new InvalidPlatformException(options.Platform.Target);
|
|
}
|
|
|
|
string includesFolderPath;
|
|
if (VulkanSdk.Instance.TryGetIncludePath(out includesFolderPath))
|
|
{
|
|
options.PublicIncludePaths.Add(includesFolderPath);
|
|
}
|
|
else
|
|
{
|
|
Log.Error("Missing VulkanSDK.");
|
|
}
|
|
}
|
|
}
|