Never specify /O1
Leaving it as /O2 might improve performance. Stops this from being spammed: cl : command line warning D9025: overriding '/O2' with '/O1' [D:\a\xenia-canary\xenia-canary\build\glslang-spirv.vcxproj] /Os is implied by /O1; https://learn.microsoft.com/en-us/cpp/build/reference/o1-o2-minimize-size-maximize-speed?view=msvc-170
This commit is contained in:
11
third_party/capstone.lua
vendored
11
third_party/capstone.lua
vendored
@@ -11,12 +11,11 @@ project("capstone")
|
||||
"CAPSTONE_USE_SYS_DYN_MEM",
|
||||
"_LIB",
|
||||
})
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
-- filter({"configurations:Release", "platforms:Windows"})
|
||||
-- buildoptions({
|
||||
-- "/O1",
|
||||
-- })
|
||||
-- filter {}
|
||||
|
||||
includedirs({
|
||||
"capstone",
|
||||
|
||||
11
third_party/fmt.lua
vendored
11
third_party/fmt.lua
vendored
@@ -8,12 +8,11 @@ project("fmt")
|
||||
defines({
|
||||
"_LIB",
|
||||
})
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
-- filter({"configurations:Release", "platforms:Windows"})
|
||||
-- buildoptions({
|
||||
-- "/O1",
|
||||
-- })
|
||||
-- filter {}
|
||||
|
||||
includedirs({
|
||||
"fmt/include",
|
||||
|
||||
11
third_party/glslang-spirv.lua
vendored
11
third_party/glslang-spirv.lua
vendored
@@ -10,12 +10,11 @@ project("glslang-spirv")
|
||||
})
|
||||
includedirs({
|
||||
})
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter {}
|
||||
-- filter({"configurations:Release", "platforms:Windows"})
|
||||
-- buildoptions({
|
||||
-- "/O1",
|
||||
-- })
|
||||
-- filter {}
|
||||
|
||||
files({
|
||||
"glslang/SPIRV/bitutils.h",
|
||||
|
||||
11
third_party/imgui.lua
vendored
11
third_party/imgui.lua
vendored
@@ -11,12 +11,11 @@ project("imgui")
|
||||
includedirs({
|
||||
"imgui",
|
||||
})
|
||||
filter({"configurations:Release", "platforms:Windows"})
|
||||
buildoptions({
|
||||
"/Os",
|
||||
"/O1"
|
||||
})
|
||||
filter{}
|
||||
-- filter({"configurations:Release", "platforms:Windows"})
|
||||
-- buildoptions({
|
||||
-- "/O1",
|
||||
-- })
|
||||
-- filter{}
|
||||
files({
|
||||
"imgui/imconfig.h",
|
||||
"imgui/imgui.cpp",
|
||||
|
||||
Reference in New Issue
Block a user