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

5
third_party/fmt.lua vendored
View file

@ -8,6 +8,11 @@ project("fmt")
defines({
"_LIB",
})
filter({"configurations:Release", "platforms:Windows"})
buildoptions({
"/Os",
"/O1"
})
includedirs({
"fmt/include",
})