summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CMakeDependentOption
Commit message (Collapse)AuthorAgeFilesLines
* CMakeDependentOption: Introduce policy CMP0127 for full Condition SyntaxDaniel Schürmann2021-09-1012-1/+51
| | | | Fixes: #22303
* CMakeDependentOption: Revert "Allow parentheses in the depends string"Brad King2021-07-204-8/+6
| | | | | | | | Revert commit 0665d9092e (CMakeDependentOption: Allow parentheses in the depends string, 2021-06-13, v3.21.0-rc1~32^2). It broke existing use cases with parentheses in regular expressions. Also add a test for this. Fixes: #22447
* CMakeDependentOption: Allow parentheses in the depends stringDaniel Schürmann2021-06-143-0/+11
`if()` takes the condition as a list of arguments. Parentheses need to be separated as well. Fixes: #22303