summaryrefslogtreecommitdiff
path: root/Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake')
-rw-r--r--Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake b/Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake
new file mode 100644
index 000000000..4fccdc418
--- /dev/null
+++ b/Tests/RunCMake/IncompatibleQt/IncompatibleQt.cmake
@@ -0,0 +1,6 @@
+
+find_package(Qt4 REQUIRED)
+find_package(Qt5Core REQUIRED)
+
+add_executable(mainexe main.cpp)
+target_link_libraries(mainexe Qt4::QtCore Qt5::Core)