summaryrefslogtreecommitdiff
path: root/src/SConscript
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2015-09-27 13:29:04 +0100
committerThomas Tanner <trtanner@btinternet.com>2015-09-27 13:29:04 +0100
commit2fb491711188d413f65bdd8193644d25ae03c2c2 (patch)
tree1b1e46b30d886ee0121ed4d8fc2354753eea9d29 /src/SConscript
parent364c385f1a5f71c3eb6a80b44c26ddd7af012ec8 (diff)
Changes to go with cleaned up archive library
Diffstat (limited to 'src/SConscript')
-rw-r--r--src/SConscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript
index 6783fd8b..540b2343 100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -72,7 +72,11 @@ env.AppendUnique(CPPDEFINES = [
'QT_MESSAGELOGCONTEXT'
])
-env.AppendUnique(CPPFLAGS = [ '-wd4100', '-wd4127', '-wd4512', '-wd4189' ])
+# Boost produces very long names with msvc truncates. Doesn't seem to cause
+# problems.
+# Also note to remove the -wd4100 I hacked the boost headers (tagged_argument.hpp)
+# appropriately.
+env.AppendUnique(CPPFLAGS = [ '-wd4503' ])
env.AppendUnique(LINKFLAGS = [
'/SUBSYSTEM:WINDOWS',