diff options
author | Juan Ramos <[email protected]> | 2023-01-11 12:24:53 -0700 |
---|---|---|
committer | Juan Ramos <[email protected]> | 2023-01-11 12:26:22 -0700 |
commit | b62045d6ba4dea72f79f28cfb5e1a9626c0b5ce6 (patch) | |
tree | d18bb8787fdd30700e153786325f66716da79490 /BUILD.md | |
parent | d0f8581c604de78d24762e7787cc19f9b252fd7f (diff) | |
download | Vulkan-Headers-b62045d6ba4dea72f79f28cfb5e1a9626c0b5ce6.tar.gz Vulkan-Headers-b62045d6ba4dea72f79f28cfb5e1a9626c0b5ce6.zip |
docs: Update BUILD.md
Diffstat (limited to 'BUILD.md')
-rw-r--r-- | BUILD.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,12 +35,12 @@ The library provides a Config file for CMake, once installed it can be found via Which, when successful, will create the header only library `Vulkan::Headers` which you can use via the usual `target_link_libraries` mechanism. -`VULKAN_HEADERS_REGISTRY_DIRECTORY` is also provided to users who need it. - ```cmake find_package(VulkanHeaders REQUIRED CONFIG) target_link_libraries(foobar PRIVATE Vulkan::Headers) message(STATUS "Vulkan Headers Registry: ${VULKAN_HEADERS_REGISTRY_DIRECTORY}") + +message(STATUS "Vulkan Headers Version: ${VulkanHeaders_VERSION}") ``` |