You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extended the zephyr_get_build_property() CMake function with several
convenience options:
- AS_STRING:
Returns the result as a string rather than a list. Equivalent to
specifying DELIMITER " ".
- GENEX:
Uses generator expressions to get the property entries at build
time, for targets that are not yet fully configured.
Cannot be used with LANG. Also, CMake will complain if the
requested property includes $<COMPILE_OPTIONS:...> expressions.
- PREFIX <prefix>:
Specifies a custom prefix to use for each entry in the output
list. Defaults to the standard compiler flag prefix for the given
property.
- TARGET <target>:
Specifies the target to get the property from. Defaults to
"zephyr_interface" as before.
Signed-off-by: Luca Burelli <l.burelli@arduino.cc>
0 commit comments