summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CommandLine/E_cat-without-double-dash-result.txt
Commit message (Collapse)AuthorAgeFilesLines
* cmcmd: add end of options delimiter to cmake -E commandsPeter Würth2022-02-031-0/+1
Implements a -- delimiter, that indicates the end of options (starting with a dash -) of a command and separates them from the subsequent operands (positional arguments). The following commands are affected: - env: Implemented the -- delimiter. - cat: The -- delimiter was already kind of considered, but its occurence did not stop the options parsing. - rm: Here the command already implemented the -- delimiter as specified, but it was not documented. Fixes #22970