How do you guys pass valued parameter to scons ? I went through its documentation and unfortunately it's still unclear to me. I've never used it before.
Please consider this build script.
Here is code snippet from it
add_option( "boost-version", "boost version for linking(1_38)" , 1 , True , "boostVersion" )
boostVersion = GetOption( "boostVersion" )
if boostVersion is None:
boostVersion = ""
else:
boostVersion = "-" + boostVersion
I tried calling scons --boost-version=1.51 and tried scons --boostVersion=1.51 and none of it worked.
boostVersionvariable? – Brady Oct 31 '12 at 13:53