summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Autogen/QtInFunctionProperty.cmake
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2019-01-30 15:45:41 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2019-01-30 16:30:18 (GMT)
commit17ac7c4024147386bd059523eff12951f3c0ef7d (patch)
treeee13ed5e273ca8a5959f6cd35496dac26c2cc054 /Tests/RunCMake/Autogen/QtInFunctionProperty.cmake
parent748d024551d8f447046363ad617fc72bdd977fd2 (diff)
downloadCMake-17ac7c4024147386bd059523eff12951f3c0ef7d.zip
CMake-17ac7c4024147386bd059523eff12951f3c0ef7d.tar.gz
CMake-17ac7c4024147386bd059523eff12951f3c0ef7d.tar.bz2
Tests: add cases for providing Qt5Core_VERSION manually
Diffstat (limited to 'Tests/RunCMake/Autogen/QtInFunctionProperty.cmake')
-rw-r--r--Tests/RunCMake/Autogen/QtInFunctionProperty.cmake21
1 files changed, 21 insertions, 0 deletions
diff --git a/Tests/RunCMake/Autogen/QtInFunctionProperty.cmake b/Tests/RunCMake/Autogen/QtInFunctionProperty.cmake
new file mode 100644
index 0000000..35f1cd1
--- /dev/null
+++ b/Tests/RunCMake/Autogen/QtInFunctionProperty.cmake
@@ -0,0 +1,21 @@
+enable_language(CXX)
+
+function (use_autogen target)
+ find_package(Qt5 REQUIRED COMPONENTS Core Widgets)
+ set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ PROPERTY
+ Qt5Core_VERSION_MAJOR "${Qt5Core_VERSION_MAJOR}")
+ set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ PROPERTY
+ Qt5Core_VERSION_MINOR "${Qt5Core_VERSION_MINOR}")
+ set_property(TARGET "${target}" PROPERTY AUTOMOC 1)
+ set_property(TARGET "${target}" PROPERTY AUTORCC 1)
+ set_property(TARGET "${target}" PROPERTY AUTOUIC 1)
+endfunction ()
+
+function (wrap_autogen target)
+ use_autogen("${target}")
+endfunction ()
+
+add_executable(main empty.cpp)
+wrap_autogen(main)