How can I set a variable in Jamfile, that's value would depend on used feature ?
That is, I am using feature library:
import feature : feature ;
feature myoption : A B C : symmetric propagated ;
Now I want to set a global variable depending on value?
constant MY_VARIABLE : >>HERE VALUE DEPENDING ON <myoption> VALUE<< ;
How this can be done ?