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
25 lines
452 B
Lua
25 lines
452 B
Lua
project_root = "../../../.."
|
|
include(project_root.."/tools/build")
|
|
|
|
group("src")
|
|
project("xenia-debug-ui")
|
|
uuid("9193a274-f4c2-4746-bd85-93fcfc5c3e38")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
"imgui",
|
|
"xenia-base",
|
|
"xenia-cpu",
|
|
"xenia-ui",
|
|
})
|
|
-- filter({"configurations:Release", "platforms:Windows"})
|
|
-- buildoptions({
|
|
-- "/O1",
|
|
-- })
|
|
-- filter{}
|
|
defines({
|
|
})
|
|
includedirs({
|
|
})
|
|
local_platform_files()
|