Fix premake filter mistake that broke debug builds (and likely any build other than release)
This commit is contained in:
parent
8f7f7dc6ad
commit
d8c94b1aee
|
@ -10,11 +10,7 @@ project("xenia-cpu")
|
|||
"xenia-base",
|
||||
"mspack",
|
||||
})
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
|
||||
includedirs({
|
||||
project_root.."/third_party/llvm/include",
|
||||
})
|
||||
|
@ -27,3 +23,8 @@ project("xenia-cpu")
|
|||
|
||||
include("testing")
|
||||
include("ppc/testing")
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
|
@ -15,6 +15,7 @@ project("xenia-ui-d3d12")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
local_platform_files()
|
||||
files({
|
||||
"../shaders/bytecode/d3d12_5_1/*.h",
|
||||
|
|
|
@ -15,6 +15,7 @@ project("xenia-ui-vulkan")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
includedirs({
|
||||
project_root.."/third_party/Vulkan-Headers/include",
|
||||
})
|
||||
|
|
|
@ -16,6 +16,8 @@ project("xenia-vfs")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
|
||||
recursive_platform_files()
|
||||
removefiles({"vfs_dump.cc"})
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@ project("capstone")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
|
||||
includedirs({
|
||||
"capstone",
|
||||
"capstone/include",
|
||||
|
|
|
@ -13,6 +13,8 @@ project("fmt")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
|
||||
includedirs({
|
||||
"fmt/include",
|
||||
})
|
||||
|
|
|
@ -15,6 +15,8 @@ project("glslang-spirv")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
|
||||
files({
|
||||
"glslang/SPIRV/bitutils.h",
|
||||
"glslang/SPIRV/disassemble.cpp",
|
||||
|
|
|
@ -16,6 +16,7 @@ project("imgui")
|
|||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter{}
|
||||
files({
|
||||
"imgui/imconfig.h",
|
||||
"imgui/imgui.cpp",
|
||||
|
|
Loading…
Reference in New Issue