VulkanMemoryAllocator

To use this package the vulkan headers (not part of Hunter at the time of writing) must be installed. On debian variants use “apt-get install libvulkan-dev”. On Mac, Windows, and iOS download and install the Vulkan SDK from here. Recent versions of the android NDK supports Vulkan out of the box.

hunter_add_package(VulkanMemoryAllocator)
find_package(VulkanMemoryAllocator CONFIG REQUIRED)

add_executable(boo boo.cpp)
target_link_libraries(boo PUBLIC VulkanMemoryAllocator::VulkanMemoryAllocator)