mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
github.com/KhronosGroup/Vulkan-Loader (#2940)
* github.com/KhronosGroup/Vulkan-Loader * wip
This commit is contained in:
parent
780d42c96f
commit
087ef770b8
40
projects/github.com/KhronosGroup/Vulkan-Loader/package.yml
Normal file
40
projects/github.com/KhronosGroup/Vulkan-Loader/package.yml
Normal file
|
@ -0,0 +1,40 @@
|
|||
distributable:
|
||||
url: https://github.com/KhronosGroup/Vulkan-Loader/archive/v{{version}}.tar.gz
|
||||
strip-components: 1
|
||||
versions:
|
||||
github: KhronosGroup/Vulkan-Loader/tags
|
||||
dependencies:
|
||||
github.com/KhronosGroup/Vulkan-Headers: '*'
|
||||
linux:
|
||||
x.org/x11: '*'
|
||||
x.org/xcb: '*'
|
||||
wayland.freedesktop.org: '*'
|
||||
build:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
gnu.org/make: '*'
|
||||
cmake.org: '*'
|
||||
freedesktop.org/pkg-config: '*'
|
||||
python.org: ^3.11
|
||||
linux:
|
||||
x.org/xrandr: '*'
|
||||
script:
|
||||
- cmake -S . -B build $CMAKE_ARGS
|
||||
- cmake --build build
|
||||
- cmake --install build
|
||||
env:
|
||||
CMAKE_ARGS:
|
||||
- -DVULKAN_HEADERS_INSTALL_DIR={{deps.github.com/KhronosGroup/Vulkan-Headers.prefix}}
|
||||
- -DCMAKE_INSTALL_PREFIX="{{prefix}}
|
||||
- -DCMAKE_INSTALL_LIBDIR=lib
|
||||
- -DCMAKE_BUILD_TYPE=Release
|
||||
- -DCMAKE_FIND_FRAMEWORK=LAST
|
||||
- -DCMAKE_VERBOSE_MAKEFILE=ON
|
||||
- -Wno-dev
|
||||
- -DBUILD_TESTING=OFF
|
||||
test:
|
||||
dependencies:
|
||||
tea.xyz/gx/cc: c99
|
||||
script:
|
||||
- cc test.c -o test -lvulkan
|
||||
- ./test
|
6
projects/github.com/KhronosGroup/Vulkan-Loader/test.c
Normal file
6
projects/github.com/KhronosGroup/Vulkan-Loader/test.c
Normal file
|
@ -0,0 +1,6 @@
|
|||
#include <vulkan/vulkan_core.h>
|
||||
int main() {
|
||||
uint32_t version;
|
||||
vkEnumerateInstanceVersion(&version);
|
||||
return (version >= VK_API_VERSION_1_1) ? 0 : 1;
|
||||
}
|
Loading…
Reference in a new issue