diff options
author | Henrik Edin <henrik.edin@mongodb.com> | 2019-01-30 16:52:07 -0500 |
---|---|---|
committer | Henrik Edin <henrik.edin@mongodb.com> | 2019-02-01 17:06:10 -0500 |
commit | 66430d75e33827da60195deb317058c71f75e03f (patch) | |
tree | 8ca6fcca749a630afca95415638052ed429d2e70 /src/SConscript | |
parent | 2dc3359cfe83cafa0f450a0dc7e2815f48ad08b4 (diff) | |
download | mongo-66430d75e33827da60195deb317058c71f75e03f.tar.gz |
SERVER-38176 Compile with /permissive- on MSVC to make the compiler strictly standard conformant.
Diffstat (limited to 'src/SConscript')
-rw-r--r-- | src/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index fbe3157eac5..89ef06baa9c 100644 --- a/src/SConscript +++ b/src/SConscript @@ -15,7 +15,7 @@ env.SConscript('third_party/SConscript', exports=['env']) # and modules. Ideally, pcre wouldn't be here, but enough things require it # now that it seems hopeless to remove it now. env = env.Clone() -env.InjectThirdPartyIncludePaths(libraries=[ +env.InjectThirdParty(libraries=[ 'abseil-cpp', 'boost', 'pcre', |