summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/CompatibleInterface/AutoUic.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-12-03 12:26:51 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-12-08 06:03:29 (GMT)
commit77f3772784152701ff0eee5e4a19177996c03c0e (patch)
treec20abe0601fc037887e11b7c2ef6f20c21596801 /Tests/RunCMake/CompatibleInterface/AutoUic.cmake
parent2e60b5fcf7929232c2e731f21e1ab9a889949fa3 (diff)
downloadCMake-77f3772784152701ff0eee5e4a19177996c03c0e.zip
CMake-77f3772784152701ff0eee5e4a19177996c03c0e.tar.gz
CMake-77f3772784152701ff0eee5e4a19177996c03c0e.tar.bz2
cmTarget: Require a compatible INTERFACE_AUTOUIC_OPTIONS from dependencies.
Revert the origin-tracking infrastructure from commit 98093c45 (QtAutoUic: Add INTERFACE_AUTOUIC_OPTIONS target property., 2013-11-20). Use the compatibility-tracking for compatible strings instead. If two different dependencies require different AUTOUIC_OPTIONS, cmake will now appropriately issue an error.
Diffstat (limited to 'Tests/RunCMake/CompatibleInterface/AutoUic.cmake')
-rw-r--r--Tests/RunCMake/CompatibleInterface/AutoUic.cmake22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tests/RunCMake/CompatibleInterface/AutoUic.cmake b/Tests/RunCMake/CompatibleInterface/AutoUic.cmake
new file mode 100644
index 0000000..86bd5a0
--- /dev/null
+++ b/Tests/RunCMake/CompatibleInterface/AutoUic.cmake
@@ -0,0 +1,22 @@
+
+find_package(Qt4 REQUIRED)
+
+set(QT_CORE_TARGET Qt4::QtCore)
+set(QT_GUI_TARGET Qt4::QtGui)
+
+set(CMAKE_AUTOUIC ON)
+
+set(CMAKE_DEBUG_TARGET_PROPERTIES AUTOUIC_OPTIONS)
+
+add_library(KI18n INTERFACE)
+set_property(TARGET KI18n APPEND PROPERTY
+ INTERFACE_AUTOUIC_OPTIONS -tr ki18n
+)
+
+add_library(OtherI18n INTERFACE)
+set_property(TARGET OtherI18n APPEND PROPERTY
+ INTERFACE_AUTOUIC_OPTIONS -tr otheri18n
+)
+
+add_library(LibWidget empty.cpp)
+target_link_libraries(LibWidget KI18n OtherI18n ${QT_GUI_TARGET})