cmake: correct the parameter annotation of idf_build_set_property

The value parameter should be marked as [in] instead of [out], as it is used to set the property value, not to get it.
This commit is contained in:
Augtons 2023-12-21 18:30:57 +08:00 committed by GitHub
parent 8c9e29898f
commit a8ea638cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ endfunction()
# also added to the internal list of build properties if it isn't there already.
#
# @param[in] property the property to set the value of
# @param[out] value value of the property
# @param[in] value value of the property
#
# @param[in, optional] APPEND (option) append the value to the current value of the
# property instead of replacing it