diff options
author | Jamie Madill <[email protected]> | 2019-11-05 07:34:03 -0500 |
---|---|---|
committer | Mike Schuchardt <[email protected]> | 2019-11-06 08:13:12 -0800 |
commit | d42d0747ee1b7a6726fb8948444b4993f9dcd2e5 (patch) | |
tree | 53df250ab28b66d99ac5b608f725d5ef1d14a2ca /BUILD.gn | |
parent | 52c26458545b4993ac2e69f27e87664962fd3224 (diff) | |
download | Vulkan-Headers-d42d0747ee1b7a6726fb8948444b4993f9dcd2e5.tar.gz Vulkan-Headers-d42d0747ee1b7a6726fb8948444b4993f9dcd2e5.zip |
GN: Add support for Google Games Platform.
This is conditional upon defining a variable 'is_ggp'. The variable is
optional.
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ config("vulkan_headers_config") { if (is_mac) { defines = [ "VK_USE_PLATFORM_METAL_EXT" ] } + if (defined(is_ggp) && is_ggp) { + defines = [ "VK_USE_PLATFORM_GGP" ] + } } # Vulkan headers only, no compiled sources. |