Enable SDL_LEAN_AND_MEAN, SDL_RENDER_DISABLED, saves about 500kb in final exe

Build several projects that arent performance critical with /Os and /O1 under msvc windows
This commit is contained in:
chss95cs@gmail.com
2022-09-29 07:26:38 -07:00
parent 7e58a3b320
commit b4c175d8a3
13 changed files with 62 additions and 2 deletions

View File

@@ -38,7 +38,11 @@ project("xenia-hid-demo")
resincludedirs({
project_root,
})
filter({"configurations:Release", "platforms:Windows"})
buildoptions({
"/Os",
"/O1"
})
filter("platforms:not Android-*")
links({
"xenia-helper-sdl",