We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2fc121 commit ec31609Copy full SHA for ec31609
SConstruct
@@ -110,6 +110,11 @@ vars.Add(BoolVariable(
110
vars.Add(BoolVariable(
111
'with_shared_cctbx',
112
'compile and link with the shared cctbx library', False))
113
+
114
+# Specify minimum C++ standard. Allow later standard from sconscript.local.
115
+# In case of multiple `-std` options the last option holds.
116
+env.PrependUnique(CXXFLAGS='-std=c++11', delete_existing=1)
117
118
vars.Update(env)
119
env.Help(MY_SCONS_HELP % vars.GenerateHelpText(env))
120
0 commit comments