I have a boolean compiler directive
-define=CONFIG::dev,true
I'd like to know if there is some manner of negate that value. Example:
CONFIG:dev{
// the code if dev is true
}
!CONFIG:dev{
// the code if dev is false
}
I have a boolean compiler directive
-define=CONFIG::dev,true
I'd like to know if there is some manner of negate that value. Example:
CONFIG:dev{
// the code if dev is true
}
!CONFIG:dev{
// the code if dev is false
}