diff options
author | Brad King <brad.king@kitware.com> | 2012-08-13 13:49:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-08-15 15:44:49 (GMT) |
commit | ebf05abda15967f8f50dcf132f7bf84472ca6337 (patch) | |
tree | 8f519862ee05d0f2b7d2ef34cfb281841a673461 /Tests/RunCMake/GeneratorExpression/BadNOT.cmake | |
parent | cd3bd23266a4a6c00595134a17a8bdaea9e28af5 (diff) | |
download | CMake-ebf05abda15967f8f50dcf132f7bf84472ca6337.zip CMake-ebf05abda15967f8f50dcf132f7bf84472ca6337.tar.gz CMake-ebf05abda15967f8f50dcf132f7bf84472ca6337.tar.bz2 |
Add boolean generator expressions
Add generator expressions that combine and use boolean test results:
$<0:...> = empty string (ignores "...")
$<1:...> = content of "..."
$<AND:?[,?]...> = '1' if all '?' are '1', else '0'
$<OR:?[,?]...> = '0' if all '?' are '0', else '1'
$<NOT:?> = '0' if '?' is '1', else '1'
These will be useful to evaluate (future) boolean query expressions and
condition content on the results. Include tests and documentation.
Diffstat (limited to 'Tests/RunCMake/GeneratorExpression/BadNOT.cmake')
-rw-r--r-- | Tests/RunCMake/GeneratorExpression/BadNOT.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/RunCMake/GeneratorExpression/BadNOT.cmake b/Tests/RunCMake/GeneratorExpression/BadNOT.cmake new file mode 100644 index 0000000..452293b --- /dev/null +++ b/Tests/RunCMake/GeneratorExpression/BadNOT.cmake @@ -0,0 +1,5 @@ +add_custom_target(check ALL COMMAND check + $<NOT:> + $<NOT:,> + $<NOT:0,1> + VERBATIM) |