summaryrefslogtreecommitdiffstats
path: root/docs/release/scripts/genie.lua
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-08-29 10:30:23 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-08-29 10:30:23 +1000
commit4893c505ecb5eacd36a1d167db8fadc03a2bc149 (patch)
tree06eaf90168da5c2c294a2d30d5ff78e38f8c8abc /docs/release/scripts/genie.lua
parentfe7e7a75937c61ad948bc573d699f82dce3985b4 (diff)
0.213 Release filestag213
Diffstat (limited to 'docs/release/scripts/genie.lua')
-rw-r--r--docs/release/scripts/genie.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/release/scripts/genie.lua b/docs/release/scripts/genie.lua
index aea60a45cc5..b1d76df09bf 100644
--- a/docs/release/scripts/genie.lua
+++ b/docs/release/scripts/genie.lua
@@ -77,6 +77,16 @@ function precompiledheaders()
end
end
+function precompiledheaders_novs()
+ precompiledheaders()
+ if string.sub(_ACTION,1,4) == "vs20" then
+ --print("Disabling pch for Visual Studio")
+ flags {
+ "NoPCH"
+ }
+ end
+end
+
function addprojectflags()
local version = str_to_version(_OPTIONS["gcc_version"])
if _OPTIONS["gcc"]~=nil and string.find(_OPTIONS["gcc"], "gcc") then
@@ -486,7 +496,6 @@ configuration { "vs20*" }
"/bigobj",
}
flags {
- "NoPCH",
"ExtraWarnings",
}
if not _OPTIONS["NOWERROR"] then
@@ -1174,6 +1183,7 @@ configuration { "asmjs" }
}
linkoptions {
"-Wl,--start-group",
+ "-s ERROR_ON_MISSING_LIBRARIES=0"
}
archivesplit_size "20"