mirror of
https://github.com/reactos/CMake.git
synced 2024-12-21 03:00:59 +00:00
4bacff7a4c
It should be possible for example to do this: "$<AND:${FOO},$<BOOL:${TGT}>,$<BOOL:$<TARGET_PROPERTY:${TGT},PROP>" such that it works simliarly to the C code: if (foo && tgt && tgt->prop()) { } The example of generator expression code is a little bit contrived as it could be written other ways with the same functionality. Nevertheless, as these cases already work and are intentional, test for them.
54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR>
|
|
|
|
\$<OR> expression requires at least one parameter.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)
|
|
+
|
|
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR:>
|
|
|
|
Parameters to \$<OR> must resolve to either '0' or '1'.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)
|
|
+
|
|
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR:,>
|
|
|
|
Parameters to \$<OR> must resolve to either '0' or '1'.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)
|
|
+
|
|
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR:01>
|
|
|
|
Parameters to \$<OR> must resolve to either '0' or '1'.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)
|
|
+
|
|
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR:nothing>
|
|
|
|
Parameters to \$<OR> must resolve to either '0' or '1'.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)
|
|
+
|
|
CMake Error at BadOR.cmake:1 \(add_custom_target\):
|
|
Error evaluating generator expression:
|
|
|
|
\$<OR:0,nothing>
|
|
|
|
Parameters to \$<OR> must resolve to either '0' or '1'.
|
|
Call Stack \(most recent call first\):
|
|
CMakeLists.txt:3 \(include\)$
|