mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 09:41:39 +08:00
0e1dc12185
* [rollup:2021-07-16 1/7] PR #18201 (@JackBoosY) [vcpkg-cmake] Add check for unused cmake variables * [rollup:2021-07-16 2/7] PR #18397 (@strega-nil) [vcpkg_list] add new function * [rollup:2021-07-16 3/7] PR #18782 (@strega-nil) [scripts-audit] vcpkg_build_ninja * [rollup:2021-07-16 4/7] PR #18784 (@strega-nil) [scripts-audit] vcpkg_minimum_required * [rollup:2021-07-16 5/7] PR #18785 (@strega-nil) [scripts-audit] vcpkg_replace_string * [rollup:2021-07-16 6/7] PR #18786 (@strega-nil) [scripts-audit] windows scripts * [rollup:2021-07-16 7/7] PR #18945 (@strega-nil) [many ports] remove deprecated vcpkg_check_features call [1/5] Co-authored-by: nicole mazzuca <mazzucan@outlook.com> Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>
64 lines
2.7 KiB
CMake
64 lines
2.7 KiB
CMake
#[===[.md:
|
|
# 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.
|
|
|
|
```cmake
|
|
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:
|
|
```cmake
|
|
function(foo_replacement)
|
|
z_vcpkg_function_arguments(ARGS)
|
|
foo(${ARGS})
|
|
...
|
|
endfunction()
|
|
```
|
|
#]===]
|
|
|
|
# NOTE: this function definition is copied directly to scripts/buildsystems/vcpkg.cmake
|
|
# do not make changes here without making the same change there.
|
|
macro(z_vcpkg_function_arguments OUT_VAR)
|
|
if("${ARGC}" EQUAL 1)
|
|
set(z_vcpkg_function_arguments_FIRST_ARG 0)
|
|
elseif("${ARGC}" EQUAL 2)
|
|
set(z_vcpkg_function_arguments_FIRST_ARG "${ARGV1}")
|
|
|
|
if(NOT z_vcpkg_function_arguments_FIRST_ARG GREATER_EQUAL "0" AND NOT z_vcpkg_function_arguments_FIRST_ARG LESS "0")
|
|
message(FATAL_ERROR "z_vcpkg_function_arguments: index (${z_vcpkg_function_arguments_FIRST_ARG}) is not a number")
|
|
elseif(z_vcpkg_function_arguments_FIRST_ARG LESS "0" OR z_vcpkg_function_arguments_FIRST_ARG GREATER ARGC)
|
|
message(FATAL_ERROR "z_vcpkg_function_arguments: index (${z_vcpkg_function_arguments_FIRST_ARG}) out of range")
|
|
endif()
|
|
else()
|
|
# vcpkg bug
|
|
message(FATAL_ERROR "z_vcpkg_function_arguments: invalid arguments (${ARGV})")
|
|
endif()
|
|
|
|
set("${OUT_VAR}" "")
|
|
|
|
# this allows us to get the value of the enclosing function's ARGC
|
|
set(z_vcpkg_function_arguments_ARGC_NAME "ARGC")
|
|
set(z_vcpkg_function_arguments_ARGC "${${z_vcpkg_function_arguments_ARGC_NAME}}")
|
|
|
|
math(EXPR z_vcpkg_function_arguments_LAST_ARG "${z_vcpkg_function_arguments_ARGC} - 1")
|
|
# GREATER_EQUAL added in CMake 3.7
|
|
if(NOT z_vcpkg_function_arguments_LAST_ARG LESS z_vcpkg_function_arguments_FIRST_ARG)
|
|
foreach(z_vcpkg_function_arguments_N RANGE "${z_vcpkg_function_arguments_FIRST_ARG}" "${z_vcpkg_function_arguments_LAST_ARG}")
|
|
string(REPLACE ";" "\\;" z_vcpkg_function_arguments_ESCAPED_ARG "${ARGV${z_vcpkg_function_arguments_N}}")
|
|
# adds an extra ";" on the front
|
|
set("${OUT_VAR}" "${${OUT_VAR}};${z_vcpkg_function_arguments_ESCAPED_ARG}")
|
|
endforeach()
|
|
# and then removes that extra semicolon
|
|
string(SUBSTRING "${${OUT_VAR}}" 1 -1 "${OUT_VAR}")
|
|
endif()
|
|
endmacro()
|