Fix premake filter mistake that broke debug builds (and likely any build other than release)
This commit is contained in:
@@ -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"
|
||||
})
|
||||
Reference in New Issue
Block a user