#1
|
|||
|
|||
Evaluating multiple macro expression
How can I run a step contingent on multiple macro expressions? So I want
if macro1==true AND (maro2==rue OR macro3==true) do the step for example. I have v7.2a |
#2
|
|||
|
|||
Use a build rule with a script expression, i.e.:
[%macro1% And (%macro2% OR %macro3%)] http://www.kinook.com/VisBuildPro/Manual/buildrules.htm http://www.kinook.com/VisBuildPro/Ma...xpressions.htm |
#3
|
|||
|
|||
How do I "negate" a macro value, e.g.,
[%macro1% AND NOT %macro2] |
#4
|
|||
|
|||
Just like that.
|
|
|