diff options
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -23,6 +23,8 @@ add_requires( "vcpkg::zstd" ) +set_policy("build.ccache", false) + if is_plat("linux") then add_requires("vcpkg::openssl 3.0.8") else @@ -50,9 +52,6 @@ add_rules("mode.debug", "mode.release") if is_mode("release") then set_optimize("smallest") - if is_plat("windows") then - add_ldflags("/LTCG") - end end if is_mode("debug") then |