mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-04 14:17:24 +00:00
Merge branch 'master' into vulkan
This commit is contained in:
commit
ecccd02f8a
161 changed files with 3359 additions and 1562 deletions
12
premake5.lua
12
premake5.lua
|
|
@ -189,6 +189,12 @@ filter("platforms:Windows")
|
|||
"bcrypt",
|
||||
})
|
||||
|
||||
-- Embed the manifest for things like dependencies and DPI awareness.
|
||||
filter({"platforms:Windows", "kind:ConsoleApp or WindowedApp"})
|
||||
files({
|
||||
"src/xenia/base/app_win32.manifest"
|
||||
})
|
||||
|
||||
-- Create scratch/ path
|
||||
if not os.isdir("scratch") then
|
||||
os.mkdir("scratch")
|
||||
|
|
@ -242,9 +248,13 @@ workspace("xenia")
|
|||
include("third_party/SDL2.lua")
|
||||
end
|
||||
|
||||
-- Disable treating warnings as fatal errors for all third party projects:
|
||||
-- Disable treating warnings as fatal errors for all third party projects, as
|
||||
-- well as other things relevant only to Xenia itself.
|
||||
for _, prj in ipairs(premake.api.scope.current.solution.projects) do
|
||||
project(prj.name)
|
||||
removefiles({
|
||||
"src/xenia/base/app_win32.manifest"
|
||||
})
|
||||
removeflags({
|
||||
"FatalWarnings",
|
||||
})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue