mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-20 13:27:56 +08:00
545c165ce0
* [vcpkg_prettify_command] Audit * rename file * rename out-var in docs * fix file path * add internal use message to docs * escapin' in z_vcpkg_prettify_command_line * regenerate docs
862 B
862 B
z_vcpkg_function_arguments
Only for internal use in vcpkg helpers. Behavior and arguments will change without notice.
Get a list of the arguments which were passed in.
Unlike ARGV
, which is simply the arguments joined with ;
,
so that (A B)
is not distinguishable from ("A;B")
,
this macro gives "A;B"
for the first argument list,
and "A\;B"
for the second.
z_vcpkg_function_arguments(<out-var> [<N>])
z_vcpkg_function_arguments
gets the arguments between ARGV<N>
and the last argument.
<N>
defaults to 0
, so that all arguments are taken.
Example:
function(foo_replacement)
z_vcpkg_function_arguments(ARGS)
foo(${ARGS})
...
endfunction()