Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -4808,9 +4808,10 @@
},
"vulkan-memory-allocator": {
"dependency_names": [
"vulkan-memory-allocator"
"VulkanMemoryAllocator"
],
"versions": [
"3.3.0-1",
"3.1.0-1",
"3.0.1-1"
]
Expand Down
9 changes: 8 additions & 1 deletion subprojects/packagefiles/vulkan-memory-allocator/meson.build
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
project(
'VulkanMemoryAllocator',
['c', 'cpp'],
version: '3.1.0',
license: 'MIT',
meson_version: '>=0.56.0',

Check notice on line 5 in subprojects/packagefiles/vulkan-memory-allocator/meson.build

View workflow job for this annotation

GitHub Actions / Ubuntu (x86_64)

Minimum Meson version is 0.56.0

0.56.0: oldest version supported by WrapDB
version: '3.3.0',
)

vma_allocator_dep = declare_dependency(
include_directories: 'include',
)

meson.override_dependency(
'VulkanMemoryAllocator',
vma_allocator_dep,
)

if get_option('build_samples')
subdir('src')
endif
12 changes: 5 additions & 7 deletions subprojects/vulkan-memory-allocator.wrap
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
[wrap-file]
directory = VulkanMemoryAllocator-3.1.0

source_url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/archive/refs/tags/v3.1.0.tar.gz
source_filename = VulkanMemoryAllocator-3.1.0.tar.gz
source_hash = ae134ecc37c55634f108e926f85d5d887b670360e77cd107affaf3a9539595f2

directory = VulkanMemoryAllocator-3.3.0
source_url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator/archive/refs/tags/v3.3.0.tar.gz
source_filename = VulkanMemoryAllocator-3.3.0.tar.gz
source_hash = c4f6bbe6b5a45c2eb610ca9d231158e313086d5b1a40c9922cb42b597419b14e
patch_directory = vulkan-memory-allocator

[provide]
vulkan-memory-allocator = vma_allocator_dep
dependency_names = VulkanMemoryAllocator
Loading