Lines Matching refs:condition
55 # If the specified 'condition' is true then append the specified list of flags to DEST
56 macro(append_flags_if condition DEST)
57 if (${condition})
71 # Add a macro definition if condition is true.
72 macro(define_if condition def)
73 if (${condition})
78 # Add a macro definition if condition is not true.
79 macro(define_if_not condition def)
80 if (NOT ${condition})
85 # Add a macro definition to the __config_site file if the specified condition
88 macro(config_define_if condition def)
89 if (${condition})
95 macro(config_define_if_not condition def)
96 if (NOT ${condition})
118 # If the specified 'condition' is true then add a list of flags to
121 macro(add_target_flags_if condition)
122 if (${condition})
147 # If the specified 'condition' is true then add a list of flags to both
149 macro(add_flags_if condition)
150 if (${condition})
172 # If 'condition' is true then add the specified list of flags to
174 macro(add_compile_flags_if condition)
175 if (${condition})
197 # If 'condition' is true then add the specified list of flags to
199 macro(add_c_flags_if condition)
200 if (${condition})
222 # If 'condition' is true then add the specified list of flags to
224 macro(add_cxx_flags_if condition)
225 if (${condition})
247 # If 'condition' is true then add the specified list of flags to
249 macro(add_link_flags_if condition)
250 if (${condition})
272 # if 'condition' is true then add the specified list of libraries and flags
274 macro(add_library_flags_if condition)
275 if(${condition})