build: Remove invalid generated files

vk_dispatch_table_helper.h and vk_layer_dispatch_table.h don't
compile currently.

Added minimal compilation testing for vk_enum_string_helper.h
This commit is contained in:
Juan Ramos 2023-07-21 11:43:48 -06:00 committed by Juan Ramos
parent 3422e694ed
commit 596e7cf6ea
6 changed files with 29 additions and 3145 deletions

View file

@ -37,14 +37,17 @@ def RunGenerators(api: str, registry: str, targetFilter: str) -> None:
# Build up a list of all generators and custom options
generators = {
'vk_dispatch_table_helper.h' : {
'generator' : DispatchTableHelperOutputGenerator,
'directory' : 'include/vulkan',
},
'vk_layer_dispatch_table.h' : {
'generator' : LayerDispatchTableOutputGenerator,
'directory' : 'include/vulkan',
},
# TODO: vk_dispatch_table_helper.h doesn't compile.
# 'vk_dispatch_table_helper.h' : {
# 'generator' : DispatchTableHelperOutputGenerator,
# 'directory' : 'include/vulkan',
#},
# TODO: vk_layer_dispatch_table.h doesn't compile.
#
#'vk_layer_dispatch_table.h' : {
# 'generator' : LayerDispatchTableOutputGenerator,
# 'directory' : 'include/vulkan',
#},
'vk_enum_string_helper.h' : {
'generator' : EnumStringHelperOutputGenerator,
'directory' : 'include/vulkan',