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
8 changes: 8 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -4809,6 +4809,14 @@
"2.3.0-1"
]
},
"vk-bootstrap": {
"dependency_names": [
"vk-bootstrap"
],
"versions": [
"1.4.349-1"
]
},
"vo-aacenc": {
"dependency_names": [
"vo-aacenc"
Expand Down
31 changes: 31 additions & 0 deletions subprojects/packagefiles/vk-bootstrap/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
project(
'vk-bootstrap',
'cpp',
version: '1.4.349',
license: 'MIT',
meson_version: '>=0.63.0',

Check notice on line 6 in subprojects/packagefiles/vk-bootstrap/meson.build

View workflow job for this annotation

GitHub Actions / Ubuntu (x86_64)

Minimum Meson version is 0.63.0

0.56.0: oldest version supported by WrapDB 0.63.0: cpp_std in subproject default_options
default_options: ['cpp_std=c++17'],
)

vk_bootstrap_inc = include_directories('src')

vulkan_dep = dependency(
'vulkan',
required: true,
fallback: ['vulkan-headers', 'vulkan_headers_dep'],
)

vk_bootstrap_lib = static_library(
'vk-bootstrap',
['src/VkBootstrap.cpp'],
include_directories: vk_bootstrap_inc,
dependencies: [vulkan_dep],
)

vk_bootstrap_dep = declare_dependency(
include_directories: vk_bootstrap_inc,
link_with: vk_bootstrap_lib,
dependencies: [vulkan_dep],
)

meson.override_dependency('vk-bootstrap', vk_bootstrap_dep)
9 changes: 9 additions & 0 deletions subprojects/vk-bootstrap.wrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[wrap-file]
directory = vk-bootstrap-1.4.349
source_url = https://github.com/charles-lunarg/vk-bootstrap/archive/refs/tags/v1.4.349.tar.gz
source_filename = vk-bootstrap-1.4.349.tar.gz
source_hash = 0db474bcd9417bbcc40f66bb3b65d3179d48373ff979b604172ca5b670eb5b04
patch_directory = vk-bootstrap

[provide]
dependency_names = vk-bootstrap
Loading