Lines Matching full:condition
38 # Add a macro definition if condition is true.
39 macro(define_if condition def)
40 if (${condition})
45 # Add a macro definition if condition is not true.
46 macro(define_if_not condition def)
47 if (NOT ${condition})
61 # If the specified 'condition' is true then add a list of flags to both
63 macro(add_flags_if condition)
64 if (${condition})
86 # If 'condition' is true then add the specified list of flags to
88 macro(add_compile_flags_if condition)
89 if (${condition})
111 # If 'condition' is true then add the specified list of flags to
113 macro(add_link_flags_if condition)
114 if (${condition})
136 # if 'condition' is true then add the specified list of libraries and flags
138 macro(add_library_flags_if condition)
139 if(${condition})