Lines Matching full:condition
49 # If the specified 'condition' is true then append the specified list of flags to DEST
50 macro(append_flags_if condition DEST)
51 if (${condition})
65 # Add a macro definition if condition is true.
66 macro(define_if condition def)
67 if (${condition})
72 # Add a macro definition if condition is not true.
73 macro(define_if_not condition def)
74 if (NOT ${condition})
79 # Add a macro definition to the __config_site file if the specified condition
82 macro(config_define_if condition def)
83 if (${condition})