mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 12:49:36 -06:00
6 lines
218 B
CMake
6 lines
218 B
CMake
message(STATUS "Number of arguments for ${CMAKE_ARGV3}: ${CMAKE_ARGC}")
|
|
math(EXPR last "${CMAKE_ARGC} - 1")
|
|
foreach(n RANGE 4 ${last})
|
|
message(STATUS "${CMAKE_ARGV3} argument ${n}: '${CMAKE_ARGV${n}}'")
|
|
endforeach()
|