From a69fd02e4e27a669b41b3c00619b242c55211994 Mon Sep 17 00:00:00 2001 From: Zeno Albisser Date: Tue, 28 Sep 2010 09:44:06 -0400 Subject: Added note to changes-4.7.1 Reviewed-by: Frederik Gladhorn (cherry picked from commit 02de74f0b2d443e410154e96321357cfe2ef9aad) --- dist/changes-4.7.1 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dist/changes-4.7.1 b/dist/changes-4.7.1 index 29b4d41..d1ef791 100644 --- a/dist/changes-4.7.1 +++ b/dist/changes-4.7.1 @@ -55,6 +55,15 @@ QtGui * [QTBUG-12540] Fix rendering of large glyphs with OpenGL2 paint engine. + - QPinchGesture + * The scaleFactor and totalScaleFactor now represent a value that allows + an object to track a touchpoint during a Pinch Gesture even when using + sequences for zooming. + Therefor the scale factors are initialized to 1.0 and for every new + sequence the totalScaleFactor is multiplied with the scaleFactor of the + new sequence. + + QtDBus ------ -- cgit v0.12 558676781304'/> CMake is a cross-platform, open-source build system generator.
summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/TargetPropertyGeneratorExpressions/LinkImplementationCycle5.cmake
blob: dc180e391679f700398f4d02c1beb03e1771496a (plain)
1
2
3
4
5
6
7
8
9
10

add_library(empty1 INTERFACE IMPORTED)
add_library(empty2 INTERFACE IMPORTED)

set_property(TARGET empty1 PROPERTY INTERFACE_LINK_LIBRARIES
  $<$<STREQUAL:$<TARGET_PROPERTY:INTERFACE_INCLUDE_DIRECTORIES>,/foo/bar>:empty2>
)

add_library(empty3 empty.cpp)
target_link_libraries(empty3 empty1)