summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2021-05-20 13:22:28 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2021-05-20 19:40:46 +0200
commit9e8f43e5accba52b3df6e202759f5ea9b8620e5e (patch)
tree8dfdef0c398ad87fdcb337f79baaf4f5d4c45ca9 /tests/auto/cmake
parentc4df673dd9034bc6dcd0871d27f13d8524ae829e (diff)
Fix qt6_add_big_resources
The qt6_add_big_resources command was dysfunctional whenever AUTOMOC was enabled for a target. We passed multiple object files with the --temp argument of the second pass of rcc. We must pass exactly one. The spurious object file was the one that's created by AUTOMOC. Turn off all of AUTOGEN for the C++ source file that's generated in the first pass of rcc. Enable AUTOMOC for tests/auto/cmake/test_add_big_resource to cover this situation. Pick-to: 6.1 Fixes: QTBUG-85051 Change-Id: I6d2ce4953297db0751913456db0a4a126fe33f14 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'tests/auto/cmake')
-rw-r--r--tests/auto/cmake/test_add_big_resource/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/cmake/test_add_big_resource/CMakeLists.txt b/tests/auto/cmake/test_add_big_resource/CMakeLists.txt
index f9014aac06..49abde6650 100644
--- a/tests/auto/cmake/test_add_big_resource/CMakeLists.txt
+++ b/tests/auto/cmake/test_add_big_resource/CMakeLists.txt
@@ -1,8 +1,10 @@
-
cmake_minimum_required(VERSION 3.14)
project(test_add_big_resource)
+# Make sure that AUTOMOC does not interfere with qt_add_big_resources
+set(CMAKE_AUTOMOC ON)
+
find_package(Qt6Core REQUIRED)
qt_wrap_cpp(moc_files myobject.h)