From ec094a818036e73716b55a523f8c94e7f51a536f Mon Sep 17 00:00:00 2001 From: Reece Date: Mon, 7 Jun 2021 20:31:29 +0100 Subject: [PATCH] [+] Enable link time optimization across all projects by default --- Boilerplate/workspace.lua | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Boilerplate/workspace.lua b/Boilerplate/workspace.lua index 42bf802..1c84639 100644 --- a/Boilerplate/workspace.lua +++ b/Boilerplate/workspace.lua @@ -39,7 +39,8 @@ workspace "Aurora Project" flags { "NoIncrementalLink", - "MultiProcessorCompile"--, + "MultiProcessorCompile", + "LinkTimeOptimization"--, --"NoEditAndContinue" } @@ -65,6 +66,10 @@ workspace "Aurora Project" filter {} + stringpooling "true" + floatingpoint "strict" + + if ((not isWin) or (_G.forceClang)) then usingClang = true toolset "clang"