Add volk.h header to distributed build files
This commit is contained in:
9
Source/ThirdParty/volk/volk.Build.cs
vendored
9
Source/ThirdParty/volk/volk.Build.cs
vendored
@@ -1,5 +1,6 @@
|
|||||||
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Flax.Build;
|
using Flax.Build;
|
||||||
using Flax.Build.NativeCpp;
|
using Flax.Build.NativeCpp;
|
||||||
@@ -62,4 +63,12 @@ public class volk : ThirdPartyModule
|
|||||||
Log.ErrorOnce("Missing VulkanSDK.", ref _missingSDKError);
|
Log.ErrorOnce("Missing VulkanSDK.", ref _missingSDKError);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <inheritdoc />
|
||||||
|
public override void GetFilesToDeploy(List<string> files)
|
||||||
|
{
|
||||||
|
base.GetFilesToDeploy(files);
|
||||||
|
|
||||||
|
files.Add(Path.Combine(FolderPath, "volk.h"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user