mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
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
24 lines
385 B
Lua
24 lines
385 B
Lua
group("third_party")
|
|
project("fmt")
|
|
uuid("b9ff4b2c-b438-42a9-971e-e0c19a711a13")
|
|
kind("StaticLib")
|
|
language("C++")
|
|
links({
|
|
})
|
|
defines({
|
|
"_LIB",
|
|
})
|
|
-- filter({"configurations:Release", "platforms:Windows"})
|
|
-- buildoptions({
|
|
-- "/O1",
|
|
-- })
|
|
-- filter {}
|
|
|
|
includedirs({
|
|
"fmt/include",
|
|
})
|
|
files({
|
|
"fmt/src/format.cc",
|
|
"fmt/src/os.cc"
|
|
})
|