From 2548438e326d20eda2eb4398139164f5400d22ac Mon Sep 17 00:00:00 2001 From: Alexey Edelev Date: Mon, 23 Nov 2020 17:54:34 +0100 Subject: CMake: Change generated resources naming Align generated resources .qrc file naming to qmake naming. Update tests. Fixes: QTBUG-88581 Pick-to: 6.0 Change-Id: Id8a2f91f23c257e5b8bd371748c2151ec54a6418 Reviewed-by: Alexandru Croitor --- tests/auto/cmake/test_add_resources_binary_generated/CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/auto') diff --git a/tests/auto/cmake/test_add_resources_binary_generated/CMakeLists.txt b/tests/auto/cmake/test_add_resources_binary_generated/CMakeLists.txt index c7839348a7..a764e68cc7 100644 --- a/tests/auto/cmake/test_add_resources_binary_generated/CMakeLists.txt +++ b/tests/auto/cmake/test_add_resources_binary_generated/CMakeLists.txt @@ -18,15 +18,15 @@ qt6_add_resources(test_add_resources_binary_generated resources2 FILES resource2 target_compile_definitions(test_add_resources_binary_generated PRIVATE - RESOURCE1_FULL_PATH="${CMAKE_CURRENT_BINARY_DIR}/generated_resources1.rcc") + RESOURCE1_FULL_PATH="${CMAKE_CURRENT_BINARY_DIR}/resources1.rcc") target_compile_definitions(test_add_resources_binary_generated PRIVATE RESOURCE2_FULL_PATH="${CMAKE_CURRENT_BINARY_DIR}/resources2_custom.rcc") -if(NOT TARGET binary_resource_generated_resources1) +if(NOT TARGET binary_resource_resources1) message(FATAL_ERROR "Generated resources binary target was not created") endif() -if(NOT TARGET binary_resource_generated_resources2) +if(NOT TARGET binary_resource_resources2) message(FATAL_ERROR "Generated resources binary target was not created") endif() -- cgit v1.2.3