diff options
author | withmorten <morten.with@gmail.com> | 2021-01-10 20:31:26 +0100 |
---|---|---|
committer | Sergeanur <s.anureev@yandex.ua> | 2021-01-12 11:43:42 +0100 |
commit | 75367e714adf33dd5d0e046f86917ef8994c6c54 (patch) | |
tree | d1b57103ddb47984fc73d7af7440d45601b43398 | |
parent | Fix collective commands (diff) | |
download | re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar.gz re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar.bz2 re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar.lz re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar.xz re3-75367e714adf33dd5d0e046f86917ef8994c6c54.tar.zst re3-75367e714adf33dd5d0e046f86917ef8994c6c54.zip |
Diffstat (limited to '')
-rw-r--r-- | premake5.exe | bin | 1362432 -> 1395712 bytes | |||
-rw-r--r-- | premake5.lua | 13 | ||||
-rwxr-xr-x | premake5Linux | bin | 2035312 -> 2035312 bytes |
3 files changed, 11 insertions, 2 deletions
diff --git a/premake5.exe b/premake5.exe Binary files differindex 9048d51e..a8483721 100644 --- a/premake5.exe +++ b/premake5.exe diff --git a/premake5.lua b/premake5.lua index 9796b8a9..e62ad6be 100644 --- a/premake5.lua +++ b/premake5.lua @@ -34,6 +34,11 @@ newoption { description = "Build with opus" } +newoption { + trigger = "lto", + description = "Use link time optimization" +} + if(_OPTIONS["with-librw"]) then Librw = "vendor/librw" else @@ -61,6 +66,7 @@ end workspace "reVC" language "C++" configurations { "Debug", "Release" } + startproject "reVC" location "build" symbols "Full" staticruntime "off" @@ -109,7 +115,10 @@ workspace "reVC" filter "configurations:Release" defines { "NDEBUG" } - optimize "On" + optimize "Speed" + if(_OPTIONS["lto"]) then + flags { "LinkTimeOptimization" } + end filter { "platforms:win*" } system "windows" @@ -167,7 +176,7 @@ workspace "reVC" scriptspath = scriptspath or "" if (gamepath) then postbuildcommands { - '{COPY} "%{cfg.buildtarget.abspath}" "' .. gamepath .. scriptspath .. '%{cfg.buildtarget.name}"' + '{COPYFILE} "%{cfg.buildtarget.abspath}" "' .. gamepath .. scriptspath .. '%{cfg.buildtarget.name}"' } debugdir (gamepath) if (exepath) then diff --git a/premake5Linux b/premake5Linux Binary files differindex 2fd412da..1ca75167 100755 --- a/premake5Linux +++ b/premake5Linux |