Fix premake filter mistake that broke debug builds (and likely any build other than release)

This commit is contained in:
chss95cs@gmail.com
2022-10-08 10:10:36 -07:00
parent 8f7f7dc6ad
commit d8c94b1aee
8 changed files with 17 additions and 5 deletions

View File

@@ -15,6 +15,7 @@ project("xenia-ui-d3d12")
"/Os",
"/O1"
})
filter {}
local_platform_files()
files({
"../shaders/bytecode/d3d12_5_1/*.h",

View File

@@ -15,6 +15,7 @@ project("xenia-ui-vulkan")
"/Os",
"/O1"
})
filter {}
includedirs({
project_root.."/third_party/Vulkan-Headers/include",
})