Vulkan-Utility-Libraries/tests
2023-09-14 17:10:12 +02:00
..
add_subdirectory Use vku prefix for vk_dispatch_table.h interface 2023-09-13 16:49:54 -06:00
find_package src: Add vk_format_utils.h to UtilityHeaders 2023-09-11 12:48:03 -06:00
format_utils src: Add vk_format_utils.h to UtilityHeaders 2023-09-11 12:48:03 -06:00
generated cmake: Add a function to setup all build targets with the same strictness 2023-09-07 19:23:55 +02:00
layer layer: Add CPP version of GetUnknownSettings 2023-09-14 17:10:12 +02:00
vk_dispatch_table Use vku prefix for vk_dispatch_table.h interface 2023-09-13 16:49:54 -06:00
CMakeLists.txt src: Add vk_format_utils.h to UtilityHeaders 2023-09-11 12:48:03 -06:00
README.md Ensure all header files shipped have the vk_ prefix 2023-09-08 12:47:09 -06:00

Library integration testing

In order to avoid disruption of downstream users. It's important to test how this repository is consumed.

  1. Self contained headers

It's easy to write header files that aren't self contained. By compiling a single source file that includes a single header we ensure a smooth experience for downstream users.

  1. Ensure C compatibility of C header files

It's VERY easy to write invalid C code. Especially for experience C++ programmers.

tests/find_package

Test find_package support. The intent is to ensure we properly install files.

Used by system/language package managers and the Vulkan SDK packaging.

tests/add_subdirectory

  1. Test add_subdirectory support

While we don't have to support add_subdirectory it is a common feature request for CMake projects.

  1. Ensure file name consistency of header files we install

All header files we ship will have the vk_ prefix

This convention was originally established in VulkanHeaders for files created by LunarG.

  • EX: vk_icd.h, vk_layer.h, vk_platform.h