summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2019-10-15 14:07:17 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2019-10-15 12:23:59 +0000
commit36c362412b8829c61a1292c654a7d9e2a8c290e9 (patch)
tree60c487eab6e24571eb7ceeffd9e7ddf90d9e2a3d
parent1d4a58a877b8b28074ca84a07340d2d8604b38d6 (diff)
Regenerate projects before merge
Change-Id: I9a889214e310b95ca1418925d6413602f9e00cea Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
-rw-r--r--.prev_CMakeLists.txt19
-rw-r--r--CMakeLists.txt14
-rw-r--r--src/plugins/imageformats/.prev_CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/CMakeLists.txt6
-rw-r--r--src/plugins/imageformats/icns/.prev_CMakeLists.txt5
-rw-r--r--src/plugins/imageformats/icns/CMakeLists.txt7
-rw-r--r--src/plugins/imageformats/jp2/.prev_CMakeLists.txt5
-rw-r--r--src/plugins/imageformats/jp2/CMakeLists.txt6
-rw-r--r--src/plugins/imageformats/macheif/.prev_CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/macheif/CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/macjp2/CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/mng/CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/tga/.prev_CMakeLists.txt5
-rw-r--r--src/plugins/imageformats/tga/CMakeLists.txt8
-rw-r--r--src/plugins/imageformats/tiff/.prev_CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/tiff/CMakeLists.txt2
-rw-r--r--src/plugins/imageformats/wbmp/.prev_CMakeLists.txt5
-rw-r--r--src/plugins/imageformats/wbmp/CMakeLists.txt7
-rw-r--r--src/plugins/imageformats/webp/.prev_CMakeLists.txt4
-rw-r--r--src/plugins/imageformats/webp/CMakeLists.txt4
-rw-r--r--tests/.prev_CMakeLists.txt10
-rw-r--r--tests/CMakeLists.txt9
-rw-r--r--tests/auto/dds/CMakeLists.txt263
-rw-r--r--tests/auto/heif/CMakeLists.txt23
-rw-r--r--tests/auto/icns/CMakeLists.txt73
-rw-r--r--tests/auto/jp2/CMakeLists.txt23
-rw-r--r--tests/auto/mng/CMakeLists.txt38
-rw-r--r--tests/auto/tga/CMakeLists.txt18
-rw-r--r--tests/auto/tiff/CMakeLists.txt273
-rw-r--r--tests/auto/wbmp/CMakeLists.txt23
-rw-r--r--tests/auto/webp/CMakeLists.txt21
-rw-r--r--tests/benchmarks/CMakeLists.txt1
-rw-r--r--tests/benchmarks/mng/CMakeLists.txt39
-rw-r--r--tests/benchmarks/tiff/CMakeLists.txt274
34 files changed, 919 insertions, 278 deletions
diff --git a/.prev_CMakeLists.txt b/.prev_CMakeLists.txt
new file mode 100644
index 0000000..cb76c1f
--- /dev/null
+++ b/.prev_CMakeLists.txt
@@ -0,0 +1,19 @@
+# Generated from qtimageformats.pro.
+
+cmake_minimum_required(VERSION 3.15.0)
+
+project(imageformats_FIXME
+ VERSION 6.0.0
+ DESCRIPTION "Qt imageformats_FIXME Libraries"
+ HOMEPAGE_URL "https://qt.io/"
+ LANGUAGES CXX C
+)
+
+find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Core SET_ME_TO_SOMETHING_USEFUL)
+find_package(Qt6 ${PROJECT_VERSION} CONFIG OPTIONAL_COMPONENTS SET_ME_TO_SOMETHING_USEFUL)
+
+if(NOT TARGET Qt::Gui)
+ message(NOTICE "Skipping the build as the condition \"TARGET Qt::Gui\" is not met.")
+ return()
+endif()
+qt_build_repo()
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 561fc11..961585c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,12 +1,18 @@
+# Generated from qtimageformats.pro.
+
cmake_minimum_required(VERSION 3.15.0)
-project(QtImageFormats
+project(QtImageFormats # special case
VERSION 6.0.0
- DESCRIPTION "Qt ImageFormats Libraries"
+ DESCRIPTION "Qt ImageFormats Libraries" # special case
HOMEPAGE_URL "https://qt.io/"
LANGUAGES CXX C
)
-find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Gui)
-qt_build_repo()
+find_package(Qt6 ${PROJECT_VERSION} CONFIG REQUIRED COMPONENTS BuildInternals Gui) # special case
+if(NOT TARGET Qt::Gui)
+ message(NOTICE "Skipping the build as the condition \"TARGET Qt::Gui\" is not met.")
+ return()
+endif()
+qt_build_repo()
diff --git a/src/plugins/imageformats/.prev_CMakeLists.txt b/src/plugins/imageformats/.prev_CMakeLists.txt
index bf6c12a..dfcc7e4 100644
--- a/src/plugins/imageformats/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/.prev_CMakeLists.txt
@@ -22,6 +22,6 @@ endif()
if(QT_FEATURE_jasper)
add_subdirectory(jp2)
endif()
-if(((APPLE AND else)))
+if(APPLE AND NOT QT_FEATURE_jasper)
add_subdirectory(macjp2)
endif()
diff --git a/src/plugins/imageformats/CMakeLists.txt b/src/plugins/imageformats/CMakeLists.txt
index 256e0d9..01855f4 100644
--- a/src/plugins/imageformats/CMakeLists.txt
+++ b/src/plugins/imageformats/CMakeLists.txt
@@ -32,7 +32,7 @@ endif()
if(QT_FEATURE_jasper)
add_subdirectory(jp2)
endif()
-if(APPLE) # special case
- add_subdirectory(macjp2) # special case
-endif() # special case
+if(APPLE AND NOT QT_FEATURE_jasper)
+ add_subdirectory(macjp2)
+endif()
diff --git a/src/plugins/imageformats/icns/.prev_CMakeLists.txt b/src/plugins/imageformats/icns/.prev_CMakeLists.txt
index e85c4b5..cde94c2 100644
--- a/src/plugins/imageformats/icns/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/icns/.prev_CMakeLists.txt
@@ -13,10 +13,11 @@ add_qt_plugin(qicns
DEFINES
QT_NO_CAST_FROM_ASCII
QT_NO_CAST_TO_ASCII
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:icns.pro:<TRUE>:
# OTHER_FILES = "icns.json"
-# PLUGIN_CLASS_NAME = "QICNSPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/icns/CMakeLists.txt b/src/plugins/imageformats/icns/CMakeLists.txt
index 99a7643..cde94c2 100644
--- a/src/plugins/imageformats/icns/CMakeLists.txt
+++ b/src/plugins/imageformats/icns/CMakeLists.txt
@@ -13,12 +13,11 @@ add_qt_plugin(qicns
DEFINES
QT_NO_CAST_FROM_ASCII
QT_NO_CAST_TO_ASCII
- LIBRARIES # special case
- Qt::Gui # special case
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:icns.pro:<TRUE>:
# OTHER_FILES = "icns.json"
-# PLUGIN_CLASS_NAME = "QICNSPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/jp2/.prev_CMakeLists.txt b/src/plugins/imageformats/jp2/.prev_CMakeLists.txt
index 7ed0594..f45df46 100644
--- a/src/plugins/imageformats/jp2/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/jp2/.prev_CMakeLists.txt
@@ -12,11 +12,12 @@ add_qt_plugin(qjp2
qjp2handler.cpp qjp2handler_p.h
LIBRARIES
WrapJasper::WrapJasper
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:jp2.pro:<TRUE>:
# OTHER_FILES = "jp2.json"
-# PLUGIN_CLASS_NAME = "QJp2Plugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/jp2/CMakeLists.txt b/src/plugins/imageformats/jp2/CMakeLists.txt
index 5e7fd3b..f45df46 100644
--- a/src/plugins/imageformats/jp2/CMakeLists.txt
+++ b/src/plugins/imageformats/jp2/CMakeLists.txt
@@ -12,12 +12,12 @@ add_qt_plugin(qjp2
qjp2handler.cpp qjp2handler_p.h
LIBRARIES
WrapJasper::WrapJasper
- Qt::Gui # special case
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:jp2.pro:<TRUE>:
# OTHER_FILES = "jp2.json"
-# PLUGIN_CLASS_NAME = "QJp2Plugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/macheif/.prev_CMakeLists.txt b/src/plugins/imageformats/macheif/.prev_CMakeLists.txt
index 27a8682..4ee32c7 100644
--- a/src/plugins/imageformats/macheif/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/macheif/.prev_CMakeLists.txt
@@ -26,6 +26,4 @@ add_qt_plugin(qmacheif
#### Keys ignored in scope 1:.:.:macheif.pro:<TRUE>:
# OTHER_FILES = "macheif.json"
-# PLUGIN_CLASS_NAME = "QMacHeifPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/macheif/CMakeLists.txt b/src/plugins/imageformats/macheif/CMakeLists.txt
index 82950cb..22631d7 100644
--- a/src/plugins/imageformats/macheif/CMakeLists.txt
+++ b/src/plugins/imageformats/macheif/CMakeLists.txt
@@ -32,6 +32,4 @@ add_qt_plugin(qmacheif
#### Keys ignored in scope 1:.:.:macheif.pro:<TRUE>:
# OTHER_FILES = "macheif.json"
-# PLUGIN_CLASS_NAME = "QMacHeifPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/macjp2/CMakeLists.txt b/src/plugins/imageformats/macjp2/CMakeLists.txt
index 058e437..9fbb1a4 100644
--- a/src/plugins/imageformats/macjp2/CMakeLists.txt
+++ b/src/plugins/imageformats/macjp2/CMakeLists.txt
@@ -26,6 +26,4 @@ add_qt_plugin(qmacjp2
#### Keys ignored in scope 1:.:.:macjp2.pro:<TRUE>:
# OTHER_FILES = "macjp2.json"
-# PLUGIN_CLASS_NAME = "QMacJp2Plugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/mng/CMakeLists.txt b/src/plugins/imageformats/mng/CMakeLists.txt
index 5836e64..095f5a7 100644
--- a/src/plugins/imageformats/mng/CMakeLists.txt
+++ b/src/plugins/imageformats/mng/CMakeLists.txt
@@ -19,7 +19,5 @@ add_qt_plugin(qmng
#### Keys ignored in scope 1:.:.:mng.pro:<TRUE>:
# OTHER_FILES = "mng.json"
-# PLUGIN_CLASS_NAME = "QMngPlugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/tga/.prev_CMakeLists.txt b/src/plugins/imageformats/tga/.prev_CMakeLists.txt
index 6f81410..6f28762 100644
--- a/src/plugins/imageformats/tga/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/tga/.prev_CMakeLists.txt
@@ -11,10 +11,11 @@ add_qt_plugin(qtga
main.cpp
qtgafile.cpp qtgafile.h
qtgahandler.cpp qtgahandler.h
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:tga.pro:<TRUE>:
# OTHER_FILES = "tga.json"
-# PLUGIN_CLASS_NAME = "QTgaPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/tga/CMakeLists.txt b/src/plugins/imageformats/tga/CMakeLists.txt
index afd53f1..6f28762 100644
--- a/src/plugins/imageformats/tga/CMakeLists.txt
+++ b/src/plugins/imageformats/tga/CMakeLists.txt
@@ -11,13 +11,11 @@ add_qt_plugin(qtga
main.cpp
qtgafile.cpp qtgafile.h
qtgahandler.cpp qtgahandler.h
- LIBRARIES # special case
- Qt::Gui # special case
-
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:tga.pro:<TRUE>:
# OTHER_FILES = "tga.json"
-# PLUGIN_CLASS_NAME = "QTgaPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/tiff/.prev_CMakeLists.txt b/src/plugins/imageformats/tiff/.prev_CMakeLists.txt
index a2737ab..3fb2da8 100644
--- a/src/plugins/imageformats/tiff/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/tiff/.prev_CMakeLists.txt
@@ -19,7 +19,5 @@ add_qt_plugin(qtiff
#### Keys ignored in scope 1:.:.:tiff.pro:<TRUE>:
# OTHER_FILES = "tiff.json"
-# PLUGIN_CLASS_NAME = "QTiffPlugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/tiff/CMakeLists.txt b/src/plugins/imageformats/tiff/CMakeLists.txt
index 05346b4..5224c78 100644
--- a/src/plugins/imageformats/tiff/CMakeLists.txt
+++ b/src/plugins/imageformats/tiff/CMakeLists.txt
@@ -32,7 +32,5 @@ add_qt_plugin(qtiff
#### Keys ignored in scope 1:.:.:tiff.pro:<TRUE>:
# OTHER_FILES = "tiff.json"
-# PLUGIN_CLASS_NAME = "QTiffPlugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/wbmp/.prev_CMakeLists.txt b/src/plugins/imageformats/wbmp/.prev_CMakeLists.txt
index fb3982c..ae25820 100644
--- a/src/plugins/imageformats/wbmp/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/wbmp/.prev_CMakeLists.txt
@@ -10,10 +10,11 @@ add_qt_plugin(qwbmp
SOURCES
main.cpp
qwbmphandler.cpp qwbmphandler_p.h
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:wbmp.pro:<TRUE>:
# OTHER_FILES = "wbmp.json"
-# PLUGIN_CLASS_NAME = "QWbmpPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/wbmp/CMakeLists.txt b/src/plugins/imageformats/wbmp/CMakeLists.txt
index ad0b1fe..ae25820 100644
--- a/src/plugins/imageformats/wbmp/CMakeLists.txt
+++ b/src/plugins/imageformats/wbmp/CMakeLists.txt
@@ -10,12 +10,11 @@ add_qt_plugin(qwbmp
SOURCES
main.cpp
qwbmphandler.cpp qwbmphandler_p.h
- LIBRARIES # special case
- Qt::Gui # special case
+ PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
)
#### Keys ignored in scope 1:.:.:wbmp.pro:<TRUE>:
# OTHER_FILES = "wbmp.json"
-# PLUGIN_CLASS_NAME = "QWbmpPlugin"
-# PLUGIN_TYPE = "imageformats"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/webp/.prev_CMakeLists.txt b/src/plugins/imageformats/webp/.prev_CMakeLists.txt
index 52f5937..c37829b 100644
--- a/src/plugins/imageformats/webp/.prev_CMakeLists.txt
+++ b/src/plugins/imageformats/webp/.prev_CMakeLists.txt
@@ -11,12 +11,12 @@ add_qt_plugin(qwebp
main.cpp
qwebphandler.cpp qwebphandler_p.h
PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
WrapWebP::WrapWebP
)
#### Keys ignored in scope 1:.:.:webp.pro:<TRUE>:
# OTHER_FILES = "webp.json"
-# PLUGIN_CLASS_NAME = "QWebpPlugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/src/plugins/imageformats/webp/CMakeLists.txt b/src/plugins/imageformats/webp/CMakeLists.txt
index a7f6384..4b6322e 100644
--- a/src/plugins/imageformats/webp/CMakeLists.txt
+++ b/src/plugins/imageformats/webp/CMakeLists.txt
@@ -11,13 +11,13 @@ add_qt_plugin(qwebp
main.cpp
qwebphandler.cpp qwebphandler_p.h
PUBLIC_LIBRARIES
+ Qt::Core
+ Qt::Gui
WrapWebP::WrapWebP
Qt::Gui # special case
)
#### Keys ignored in scope 1:.:.:webp.pro:<TRUE>:
# OTHER_FILES = "webp.json"
-# PLUGIN_CLASS_NAME = "QWebpPlugin"
-# PLUGIN_TYPE = "imageformats"
# QT_FOR_CONFIG = "imageformats-private"
# _LOADED = "qt_plugin"
diff --git a/tests/.prev_CMakeLists.txt b/tests/.prev_CMakeLists.txt
new file mode 100644
index 0000000..718724d
--- /dev/null
+++ b/tests/.prev_CMakeLists.txt
@@ -0,0 +1,10 @@
+# Generated from tests.pro.
+
+if(NOT TARGET Qt::Test)
+ cmake_minimum_required(VERSION 3.15.0)
+ project(imageformatsTests_FIXME VERSION 6.0.0 LANGUAGES C CXX)
+ find_package(Qt6 ${PROJECT_VERSION} REQUIRED COMPONENTS BuildInternals Core SET_ME_TO_SOMETHING_USEFUL)
+ find_package(Qt6 ${PROJECT_VERSION} OPTIONAL_COMPONENTS SET_ME_TO_SOMETHING_USEFUL)
+ qt_set_up_standalone_tests_build()
+endif()
+qt_build_tests()
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 97ac2c2..5a389d6 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,13 +1,10 @@
# Generated from tests.pro.
-# special case begin
if(NOT TARGET Qt::Test)
cmake_minimum_required(VERSION 3.15.0)
- project(QtImageFormatsTests VERSION 6.0.0 LANGUAGES C CXX ASM)
- find_package(Qt6 REQUIRED COMPONENTS BuildInternals Core Test
- OPTIONAL_COMPONENTS Gui)
+ project(imageformatsTests_FIXME VERSION 6.0.0 LANGUAGES C CXX)
+ find_package(Qt6 ${PROJECT_VERSION} REQUIRED COMPONENTS BuildInternals Core Test) # special case
+ find_package(Qt6 ${PROJECT_VERSION} OPTIONAL_COMPONENTS Gui) # special case
qt_set_up_standalone_tests_build()
endif()
-# special case end
-
qt_build_tests()
diff --git a/tests/auto/dds/CMakeLists.txt b/tests/auto/dds/CMakeLists.txt
index 357b424..9a25bcb 100644
--- a/tests/auto/dds/CMakeLists.txt
+++ b/tests/auto/dds/CMakeLists.txt
@@ -12,58 +12,215 @@ add_qt_test(tst_qdds
)
# Resources:
-add_qt_resource(tst_qdds "dds" PREFIX "/" BASE "../../shared/images" FILES
- dds/A16B16G16R16.dds
- dds/A16B16G16R16F.dds
- dds/A1R5G5B5.dds
- dds/A2B10G10R10.dds
- dds/A2R10G10B10.dds
- dds/A2W10V10U10.dds
- dds/A32B32G32R32F.dds
- dds/A4L4.dds
- dds/A4R4G4B4.dds
- dds/A8.dds
- dds/A8B8G8R8.dds
- dds/A8L8.dds
- dds/A8R3G3B2.dds
- dds/A8R8G8B8.2.dds
- dds/A8R8G8B8.dds
- dds/ATI2.dds
- dds/CxV8U8.dds
- dds/DXT1.dds
- dds/DXT2.dds
- dds/DXT3.dds
- dds/DXT4.dds
- dds/DXT5.dds
- dds/G16R16.dds
- dds/G16R16F.dds
- dds/G32R32F.dds
- dds/G8R8_G8B8.dds
- dds/L16.dds
- dds/L6V5U5.dds
- dds/L8.dds
- dds/P4.dds
- dds/P8.dds
- dds/Q16W16V16U16.dds
- dds/Q8W8V8U8.dds
- dds/R16F.dds
- dds/R32F.dds
- dds/R3G3B2.dds
- dds/R5G6B5.dds
- dds/R8G8B8.dds
- dds/R8G8_B8G8.dds
- dds/RXGB.dds
- dds/UYVY.dds
- dds/V16U16.dds
- dds/V8U8.dds
- dds/X1R5G5B5.dds
- dds/X4R4G4B4.dds
- dds/X8B8G8R8.dds
- dds/X8L8V8U8.dds
- dds/X8R8G8B8.dds
- dds/YUY2.dds
- dds/mipmaps.dds)
+set_source_files_properties("../../shared/images/dds/A16B16G16R16.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A16B16G16R16.dds"
+)
+set_source_files_properties("../../shared/images/dds/A16B16G16R16F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A16B16G16R16F.dds"
+)
+set_source_files_properties("../../shared/images/dds/A1R5G5B5.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A1R5G5B5.dds"
+)
+set_source_files_properties("../../shared/images/dds/A2B10G10R10.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A2B10G10R10.dds"
+)
+set_source_files_properties("../../shared/images/dds/A2R10G10B10.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A2R10G10B10.dds"
+)
+set_source_files_properties("../../shared/images/dds/A2W10V10U10.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A2W10V10U10.dds"
+)
+set_source_files_properties("../../shared/images/dds/A32B32G32R32F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A32B32G32R32F.dds"
+)
+set_source_files_properties("../../shared/images/dds/A4L4.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A4L4.dds"
+)
+set_source_files_properties("../../shared/images/dds/A4R4G4B4.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A4R4G4B4.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8B8G8R8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8B8G8R8.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8L8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8L8.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8R3G3B2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8R3G3B2.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8R8G8B8.2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8R8G8B8.2.dds"
+)
+set_source_files_properties("../../shared/images/dds/A8R8G8B8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/A8R8G8B8.dds"
+)
+set_source_files_properties("../../shared/images/dds/ATI2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/ATI2.dds"
+)
+set_source_files_properties("../../shared/images/dds/CxV8U8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/CxV8U8.dds"
+)
+set_source_files_properties("../../shared/images/dds/DXT1.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/DXT1.dds"
+)
+set_source_files_properties("../../shared/images/dds/DXT2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/DXT2.dds"
+)
+set_source_files_properties("../../shared/images/dds/DXT3.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/DXT3.dds"
+)
+set_source_files_properties("../../shared/images/dds/DXT4.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/DXT4.dds"
+)
+set_source_files_properties("../../shared/images/dds/DXT5.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/DXT5.dds"
+)
+set_source_files_properties("../../shared/images/dds/G16R16.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/G16R16.dds"
+)
+set_source_files_properties("../../shared/images/dds/G16R16F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/G16R16F.dds"
+)
+set_source_files_properties("../../shared/images/dds/G32R32F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/G32R32F.dds"
+)
+set_source_files_properties("../../shared/images/dds/G8R8_G8B8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/G8R8_G8B8.dds"
+)
+set_source_files_properties("../../shared/images/dds/L16.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/L16.dds"
+)
+set_source_files_properties("../../shared/images/dds/L6V5U5.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/L6V5U5.dds"
+)
+set_source_files_properties("../../shared/images/dds/L8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/L8.dds"
+)
+set_source_files_properties("../../shared/images/dds/P4.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/P4.dds"
+)
+set_source_files_properties("../../shared/images/dds/P8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/P8.dds"
+)
+set_source_files_properties("../../shared/images/dds/Q16W16V16U16.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/Q16W16V16U16.dds"
+)
+set_source_files_properties("../../shared/images/dds/Q8W8V8U8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/Q8W8V8U8.dds"
+)
+set_source_files_properties("../../shared/images/dds/R16F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R16F.dds"
+)
+set_source_files_properties("../../shared/images/dds/R32F.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R32F.dds"
+)
+set_source_files_properties("../../shared/images/dds/R3G3B2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R3G3B2.dds"
+)
+set_source_files_properties("../../shared/images/dds/R5G6B5.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R5G6B5.dds"
+)
+set_source_files_properties("../../shared/images/dds/R8G8B8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R8G8B8.dds"
+)
+set_source_files_properties("../../shared/images/dds/R8G8_B8G8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/R8G8_B8G8.dds"
+)
+set_source_files_properties("../../shared/images/dds/RXGB.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/RXGB.dds"
+)
+set_source_files_properties("../../shared/images/dds/UYVY.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/UYVY.dds"
+)
+set_source_files_properties("../../shared/images/dds/V16U16.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/V16U16.dds"
+)
+set_source_files_properties("../../shared/images/dds/V8U8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/V8U8.dds"
+)
+set_source_files_properties("../../shared/images/dds/X1R5G5B5.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/X1R5G5B5.dds"
+)
+set_source_files_properties("../../shared/images/dds/X4R4G4B4.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/X4R4G4B4.dds"
+)
+set_source_files_properties("../../shared/images/dds/X8B8G8R8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/X8B8G8R8.dds"
+)
+set_source_files_properties("../../shared/images/dds/X8L8V8U8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/X8L8V8U8.dds"
+)
+set_source_files_properties("../../shared/images/dds/X8R8G8B8.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/X8R8G8B8.dds"
+)
+set_source_files_properties("../../shared/images/dds/YUY2.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/YUY2.dds"
+)
+set_source_files_properties("../../shared/images/dds/mipmaps.dds"
+ PROPERTIES QT_RESOURCE_ALIAS "dds/mipmaps.dds"
+)
+set(dds_resource_files
+ "dds/A16B16G16R16.dds"
+ "dds/A16B16G16R16F.dds"
+ "dds/A1R5G5B5.dds"
+ "dds/A2B10G10R10.dds"
+ "dds/A2R10G10B10.dds"
+ "dds/A2W10V10U10.dds"
+ "dds/A32B32G32R32F.dds"
+ "dds/A4L4.dds"
+ "dds/A4R4G4B4.dds"
+ "dds/A8.dds"
+ "dds/A8B8G8R8.dds"
+ "dds/A8L8.dds"
+ "dds/A8R3G3B2.dds"
+ "dds/A8R8G8B8.2.dds"
+ "dds/A8R8G8B8.dds"
+ "dds/ATI2.dds"
+ "dds/CxV8U8.dds"
+ "dds/DXT1.dds"
+ "dds/DXT2.dds"
+ "dds/DXT3.dds"
+ "dds/DXT4.dds"
+ "dds/DXT5.dds"
+ "dds/G16R16.dds"
+ "dds/G16R16F.dds"
+ "dds/G32R32F.dds"
+ "dds/G8R8_G8B8.dds"
+ "dds/L16.dds"
+ "dds/L6V5U5.dds"
+ "dds/L8.dds"
+ "dds/P4.dds"
+ "dds/P8.dds"
+ "dds/Q16W16V16U16.dds"
+ "dds/Q8W8V8U8.dds"
+ "dds/R16F.dds"
+ "dds/R32F.dds"
+ "dds/R3G3B2.dds"
+ "dds/R5G6B5.dds"
+ "dds/R8G8B8.dds"
+ "dds/R8G8_B8G8.dds"
+ "dds/RXGB.dds"
+ "dds/UYVY.dds"
+ "dds/V16U16.dds"
+ "dds/V8U8.dds"
+ "dds/X1R5G5B5.dds"
+ "dds/X4R4G4B4.dds"
+ "dds/X8B8G8R8.dds"
+ "dds/X8L8V8U8.dds"
+ "dds/X8R8G8B8.dds"
+ "dds/YUY2.dds"
+ "dds/mipmaps.dds"
+)
+add_qt_resource(tst_qdds "dds"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${dds_resource_files}
+)
-#### Keys ignored in scope 1:.:.:dds.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/heif/CMakeLists.txt b/tests/auto/heif/CMakeLists.txt
index 0412996..c40e1f7 100644
--- a/tests/auto/heif/CMakeLists.txt
+++ b/tests/auto/heif/CMakeLists.txt
@@ -12,10 +12,23 @@ add_qt_test(tst_qheif
)
# Resources:
-add_qt_resource(tst_qheif "heif" PREFIX "/" BASE "../../shared/images" FILES
- heif/col320x480.heic
- heif/newlogoCCW.heic)
+set_source_files_properties("../../shared/images/heif/col320x480.heic"
+ PROPERTIES QT_RESOURCE_ALIAS "heif/col320x480.heic"
+)
+set_source_files_properties("../../shared/images/heif/newlogoCCW.heic"
+ PROPERTIES QT_RESOURCE_ALIAS "heif/newlogoCCW.heic"
+)
+set(heif_resource_files
+ "heif/col320x480.heic"
+ "heif/newlogoCCW.heic"
+)
+add_qt_resource(tst_qheif "heif"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${heif_resource_files}
+)
-#### Keys ignored in scope 1:.:.:heif.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/icns/CMakeLists.txt b/tests/auto/icns/CMakeLists.txt
index 0d1e34b..0ab146b 100644
--- a/tests/auto/icns/CMakeLists.txt
+++ b/tests/auto/icns/CMakeLists.txt
@@ -12,20 +12,63 @@ add_qt_test(tst_qicns
)
# Resources:
-add_qt_resource(tst_qicns "icns" PREFIX "/" BASE "../../shared/images" FILES
- icns/test-32bit.icns
- icns/test-jp2.icns
- icns/test-legacy.icns
- icns/test-png.icns
- icns/test-variants.icns
- icns/test-write-1024.png
- icns/test-write-128.png
- icns/test-write-16.png
- icns/test-write-256.png
- icns/test-write-32.png
- icns/test-write-512.png
- icns/test-write-64.png)
+set_source_files_properties("../../shared/images/icns/test-32bit.icns"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-32bit.icns"
+)
+set_source_files_properties("../../shared/images/icns/test-jp2.icns"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-jp2.icns"
+)
+set_source_files_properties("../../shared/images/icns/test-legacy.icns"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-legacy.icns"
+)
+set_source_files_properties("../../shared/images/icns/test-png.icns"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-png.icns"
+)
+set_source_files_properties("../../shared/images/icns/test-variants.icns"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-variants.icns"
+)
+set_source_files_properties("../../shared/images/icns/test-write-1024.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-1024.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-128.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-128.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-16.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-16.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-256.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-256.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-32.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-32.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-512.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-512.png"
+)
+set_source_files_properties("../../shared/images/icns/test-write-64.png"
+ PROPERTIES QT_RESOURCE_ALIAS "icns/test-write-64.png"
+)
+set(icns_resource_files
+ "icns/test-32bit.icns"
+ "icns/test-jp2.icns"
+ "icns/test-legacy.icns"
+ "icns/test-png.icns"
+ "icns/test-variants.icns"
+ "icns/test-write-1024.png"
+ "icns/test-write-128.png"
+ "icns/test-write-16.png"
+ "icns/test-write-256.png"
+ "icns/test-write-32.png"
+ "icns/test-write-512.png"
+ "icns/test-write-64.png"
+)
+add_qt_resource(tst_qicns "icns"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${icns_resource_files}
+)
-#### Keys ignored in scope 1:.:.:icns.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/jp2/CMakeLists.txt b/tests/auto/jp2/CMakeLists.txt
index b2b1563..49383f7 100644
--- a/tests/auto/jp2/CMakeLists.txt
+++ b/tests/auto/jp2/CMakeLists.txt
@@ -12,10 +12,23 @@ add_qt_test(tst_qjp2
)
# Resources:
-add_qt_resource(tst_qjp2 "jp2" PREFIX "/" BASE "../../shared/images" FILES
- jp2/logo.bmp
- jp2/logo.jp2)
+set_source_files_properties("../../shared/images/jp2/logo.bmp"
+ PROPERTIES QT_RESOURCE_ALIAS "jp2/logo.bmp"
+)
+set_source_files_properties("../../shared/images/jp2/logo.jp2"
+ PROPERTIES QT_RESOURCE_ALIAS "jp2/logo.jp2"
+)
+set(jp2_resource_files
+ "jp2/logo.bmp"
+ "jp2/logo.jp2"
+)
+add_qt_resource(tst_qjp2 "jp2"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${jp2_resource_files}
+)
-#### Keys ignored in scope 1:.:.:jp2.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/mng/CMakeLists.txt b/tests/auto/mng/CMakeLists.txt
index a60a2cc..9bf7abb 100644
--- a/tests/auto/mng/CMakeLists.txt
+++ b/tests/auto/mng/CMakeLists.txt
@@ -12,13 +12,35 @@ add_qt_test(tst_qmng
)
# Resources:
-add_qt_resource(tst_qmng "mng" PREFIX "/" BASE "../../shared/images" FILES
- mng/animation.mng
- mng/ball.mng
- mng/corrupt.mng
- mng/dutch.mng
- mng/fire.mng)
+set_source_files_properties("../../shared/images/mng/animation.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/animation.mng"
+)
+set_source_files_properties("../../shared/images/mng/ball.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/ball.mng"
+)
+set_source_files_properties("../../shared/images/mng/corrupt.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/corrupt.mng"
+)
+set_source_files_properties("../../shared/images/mng/dutch.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/dutch.mng"
+)
+set_source_files_properties("../../shared/images/mng/fire.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/fire.mng"
+)
+set(mng_resource_files
+ "mng/animation.mng"
+ "mng/ball.mng"
+ "mng/corrupt.mng"
+ "mng/dutch.mng"
+ "mng/fire.mng"
+)
+add_qt_resource(tst_qmng "mng"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${mng_resource_files}
+)
-#### Keys ignored in scope 1:.:.:mng.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/tga/CMakeLists.txt b/tests/auto/tga/CMakeLists.txt
index 25c1441..f6e1760 100644
--- a/tests/auto/tga/CMakeLists.txt
+++ b/tests/auto/tga/CMakeLists.txt
@@ -12,9 +12,19 @@ add_qt_test(tst_qtga
)
# Resources:
-add_qt_resource(tst_qtga "tga" PREFIX "/" BASE "../../shared/images" FILES
- tga/test-flag.tga)
+set_source_files_properties("../../shared/images/tga/test-flag.tga"
+ PROPERTIES QT_RESOURCE_ALIAS "tga/test-flag.tga"
+)
+set(tga_resource_files
+ "tga/test-flag.tga"
+)
+add_qt_resource(tst_qtga "tga"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${tga_resource_files}
+)
-#### Keys ignored in scope 1:.:.:tga.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/tiff/CMakeLists.txt b/tests/auto/tiff/CMakeLists.txt
index f804003..fa8fadd 100644
--- a/tests/auto/tiff/CMakeLists.txt
+++ b/tests/auto/tiff/CMakeLists.txt
@@ -12,60 +12,223 @@ add_qt_test(tst_qtiff
)
# Resources:
-add_qt_resource(tst_qtiff "tiff" PREFIX "/" BASE "../../shared/images" FILES
- tiff/16bpc.tiff
- tiff/colorful.bmp
- tiff/corrupt-data.tif
- tiff/gray16.tiff
- tiff/grayscale-ref.tif
- tiff/grayscale.tif
- tiff/image.tif
- tiff/image_100dpi.tif
- tiff/indexed_orientation_1.tiff
- tiff/indexed_orientation_2.tiff
- tiff/indexed_orientation_3.tiff
- tiff/indexed_orientation_4.tiff
- tiff/indexed_orientation_5.tiff
- tiff/indexed_orientation_6.tiff
- tiff/indexed_orientation_7.tiff
- tiff/indexed_orientation_8.tiff
- tiff/mono_orientation_1.tiff
- tiff/mono_orientation_2.tiff
- tiff/mono_orientation_3.tiff
- tiff/mono_orientation_4.tiff
- tiff/mono_orientation_5.tiff
- tiff/mono_orientation_6.tiff
- tiff/mono_orientation_7.tiff
- tiff/mono_orientation_8.tiff
- tiff/multipage.tiff
- tiff/oddsize_grayscale.tiff
- tiff/oddsize_mono.tiff
- tiff/original_grayscale.tiff
- tiff/original_indexed.tiff
- tiff/original_mono.tiff
- tiff/original_rgb.tiff
- tiff/rgb_orientation_1.tiff
- tiff/rgb_orientation_2.tiff
- tiff/rgb_orientation_3.tiff
- tiff/rgb_orientation_4.tiff
- tiff/rgb_orientation_5.tiff
- tiff/rgb_orientation_6.tiff
- tiff/rgb_orientation_7.tiff
- tiff/rgb_orientation_8.tiff
- tiff/rgba_adobedeflate_littleendian.tif
- tiff/rgba_lzw_littleendian.tif
- tiff/rgba_nocompression_bigendian.tif
- tiff/rgba_nocompression_littleendian.tif
- tiff/rgba_packbits_littleendian.tif
- tiff/rgba_zipdeflate_littleendian.tif
- tiff/teapot.tiff
- tiff/tiled_grayscale.tiff
- tiff/tiled_indexed.tiff
- tiff/tiled_mono.tiff
- tiff/tiled_oddsize_grayscale.tiff
- tiff/tiled_oddsize_mono.tiff
- tiff/tiled_rgb.tiff)
+set_source_files_properties("../../shared/images/tiff/16bpc.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/16bpc.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/colorful.bmp"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/colorful.bmp"
+)
+set_source_files_properties("../../shared/images/tiff/corrupt-data.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/corrupt-data.tif"
+)
+set_source_files_properties("../../shared/images/tiff/gray16.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/gray16.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/grayscale-ref.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/grayscale-ref.tif"
+)
+set_source_files_properties("../../shared/images/tiff/grayscale.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/grayscale.tif"
+)
+set_source_files_properties("../../shared/images/tiff/image.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/image.tif"
+)
+set_source_files_properties("../../shared/images/tiff/image_100dpi.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/image_100dpi.tif"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/multipage.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/multipage.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/oddsize_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/oddsize_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/oddsize_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/oddsize_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_indexed.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_indexed.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_rgb.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_rgb.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_adobedeflate_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_adobedeflate_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_lzw_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_lzw_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_nocompression_bigendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_nocompression_bigendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_nocompression_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_nocompression_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_packbits_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_packbits_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_zipdeflate_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_zipdeflate_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/teapot.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/teapot.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_indexed.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_indexed.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_oddsize_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_oddsize_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_oddsize_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_oddsize_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_rgb.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_rgb.tiff"
+)
+set(tiff_resource_files
+ "tiff/16bpc.tiff"
+ "tiff/colorful.bmp"
+ "tiff/corrupt-data.tif"
+ "tiff/gray16.tiff"
+ "tiff/grayscale-ref.tif"
+ "tiff/grayscale.tif"
+ "tiff/image.tif"
+ "tiff/image_100dpi.tif"
+ "tiff/indexed_orientation_1.tiff"
+ "tiff/indexed_orientation_2.tiff"
+ "tiff/indexed_orientation_3.tiff"
+ "tiff/indexed_orientation_4.tiff"
+ "tiff/indexed_orientation_5.tiff"
+ "tiff/indexed_orientation_6.tiff"
+ "tiff/indexed_orientation_7.tiff"
+ "tiff/indexed_orientation_8.tiff"
+ "tiff/mono_orientation_1.tiff"
+ "tiff/mono_orientation_2.tiff"
+ "tiff/mono_orientation_3.tiff"
+ "tiff/mono_orientation_4.tiff"
+ "tiff/mono_orientation_5.tiff"
+ "tiff/mono_orientation_6.tiff"
+ "tiff/mono_orientation_7.tiff"
+ "tiff/mono_orientation_8.tiff"
+ "tiff/multipage.tiff"
+ "tiff/oddsize_grayscale.tiff"
+ "tiff/oddsize_mono.tiff"
+ "tiff/original_grayscale.tiff"
+ "tiff/original_indexed.tiff"
+ "tiff/original_mono.tiff"
+ "tiff/original_rgb.tiff"
+ "tiff/rgb_orientation_1.tiff"
+ "tiff/rgb_orientation_2.tiff"
+ "tiff/rgb_orientation_3.tiff"
+ "tiff/rgb_orientation_4.tiff"
+ "tiff/rgb_orientation_5.tiff"
+ "tiff/rgb_orientation_6.tiff"
+ "tiff/rgb_orientation_7.tiff"
+ "tiff/rgb_orientation_8.tiff"
+ "tiff/rgba_adobedeflate_littleendian.tif"
+ "tiff/rgba_lzw_littleendian.tif"
+ "tiff/rgba_nocompression_bigendian.tif"
+ "tiff/rgba_nocompression_littleendian.tif"
+ "tiff/rgba_packbits_littleendian.tif"
+ "tiff/rgba_zipdeflate_littleendian.tif"
+ "tiff/teapot.tiff"
+ "tiff/tiled_grayscale.tiff"
+ "tiff/tiled_indexed.tiff"
+ "tiff/tiled_mono.tiff"
+ "tiff/tiled_oddsize_grayscale.tiff"
+ "tiff/tiled_oddsize_mono.tiff"
+ "tiff/tiled_rgb.tiff"
+)
+add_qt_resource(tst_qtiff "tiff"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${tiff_resource_files}
+)
-#### Keys ignored in scope 1:.:.:tiff.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/wbmp/CMakeLists.txt b/tests/auto/wbmp/CMakeLists.txt
index 2db456b..9b7a3fb 100644
--- a/tests/auto/wbmp/CMakeLists.txt
+++ b/tests/auto/wbmp/CMakeLists.txt
@@ -12,10 +12,23 @@ add_qt_test(tst_qwbmp
)
# Resources:
-add_qt_resource(tst_qwbmp "wbmp" PREFIX "/" BASE "../../shared/images" FILES
- wbmp/qt-logo-big.wbmp
- wbmp/qt-logo-small.wbmp)
+set_source_files_properties("../../shared/images/wbmp/qt-logo-big.wbmp"
+ PROPERTIES QT_RESOURCE_ALIAS "wbmp/qt-logo-big.wbmp"
+)
+set_source_files_properties("../../shared/images/wbmp/qt-logo-small.wbmp"
+ PROPERTIES QT_RESOURCE_ALIAS "wbmp/qt-logo-small.wbmp"
+)
+set(wbmp_resource_files
+ "wbmp/qt-logo-big.wbmp"
+ "wbmp/qt-logo-small.wbmp"
+)
+add_qt_resource(tst_qwbmp "wbmp"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${wbmp_resource_files}
+)
-#### Keys ignored in scope 1:.:.:wbmp.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/auto/webp/CMakeLists.txt b/tests/auto/webp/CMakeLists.txt
index 165a0a9..6c257ec 100644
--- a/tests/auto/webp/CMakeLists.txt
+++ b/tests/auto/webp/CMakeLists.txt
@@ -12,13 +12,18 @@ add_qt_test(tst_qwebp
)
# Resources:
-add_qt_resource(tst_qwebp "webp" PREFIX "/" FILES
- images/kollada.png
- images/kollada.webp
- images/kollada_animation.webp
- images/kollada_lossless.webp
- images/kollada_noalpha.webp)
+set(webp_resource_files
+ "images/kollada.png"
+ "images/kollada.webp"
+ "images/kollada_animation.webp"
+ "images/kollada_lossless.webp"
+ "images/kollada_noalpha.webp"
+)
+add_qt_resource(tst_qwebp "webp"
+ PREFIX
+ "/"
+ FILES
+ ${webp_resource_files}
+)
-#### Keys ignored in scope 1:.:.:webp.pro:<TRUE>:
-# CONFIG = "-app_bundle" "testcase"
diff --git a/tests/benchmarks/CMakeLists.txt b/tests/benchmarks/CMakeLists.txt
index 16d5c86..14b22d3 100644
--- a/tests/benchmarks/CMakeLists.txt
+++ b/tests/benchmarks/CMakeLists.txt
@@ -1,6 +1,5 @@
# Generated from benchmarks.pro.
-
if(ON)
add_subdirectory(mng)
add_subdirectory(tiff)
diff --git a/tests/benchmarks/mng/CMakeLists.txt b/tests/benchmarks/mng/CMakeLists.txt
index ff56666..bbe61cf 100644
--- a/tests/benchmarks/mng/CMakeLists.txt
+++ b/tests/benchmarks/mng/CMakeLists.txt
@@ -5,7 +5,6 @@
#####################################################################
add_qt_executable(tst_bench_qmng
- GUI
SOURCES
tst_qmng.cpp
PUBLIC_LIBRARIES
@@ -14,13 +13,35 @@ add_qt_executable(tst_bench_qmng
)
# Resources:
-add_qt_resource(tst_bench_qmng "mng" PREFIX "/" BASE "../../shared/images" FILES
- mng/animation.mng
- mng/ball.mng
- mng/corrupt.mng
- mng/dutch.mng
- mng/fire.mng)
+set_source_files_properties("../../shared/images/mng/animation.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/animation.mng"
+)
+set_source_files_properties("../../shared/images/mng/ball.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/ball.mng"
+)
+set_source_files_properties("../../shared/images/mng/corrupt.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/corrupt.mng"
+)
+set_source_files_properties("../../shared/images/mng/dutch.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/dutch.mng"
+)
+set_source_files_properties("../../shared/images/mng/fire.mng"
+ PROPERTIES QT_RESOURCE_ALIAS "mng/fire.mng"
+)
+set(mng_resource_files
+ "mng/animation.mng"
+ "mng/ball.mng"
+ "mng/corrupt.mng"
+ "mng/dutch.mng"
+ "mng/fire.mng"
+)
+add_qt_resource(tst_bench_qmng "mng"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${mng_resource_files}
+)
-#### Keys ignored in scope 1:.:.:mng.pro:<TRUE>:
-# CONFIG = "-app_bundle"
diff --git a/tests/benchmarks/tiff/CMakeLists.txt b/tests/benchmarks/tiff/CMakeLists.txt
index 6ca9d8a..20d9ce7 100644
--- a/tests/benchmarks/tiff/CMakeLists.txt
+++ b/tests/benchmarks/tiff/CMakeLists.txt
@@ -5,7 +5,6 @@
#####################################################################
add_qt_executable(tst_bench_qtiff
- GUI
SOURCES
tst_qtiff.cpp
PUBLIC_LIBRARIES
@@ -14,60 +13,223 @@ add_qt_executable(tst_bench_qtiff
)
# Resources:
-add_qt_resource(tst_bench_qtiff "tiff" PREFIX "/" BASE "../../shared/images" FILES
- tiff/16bpc.tiff
- tiff/colorful.bmp
- tiff/corrupt-data.tif
- tiff/gray16.tiff
- tiff/grayscale-ref.tif
- tiff/grayscale.tif
- tiff/image.tif
- tiff/image_100dpi.tif
- tiff/indexed_orientation_1.tiff
- tiff/indexed_orientation_2.tiff
- tiff/indexed_orientation_3.tiff
- tiff/indexed_orientation_4.tiff
- tiff/indexed_orientation_5.tiff
- tiff/indexed_orientation_6.tiff
- tiff/indexed_orientation_7.tiff
- tiff/indexed_orientation_8.tiff
- tiff/mono_orientation_1.tiff
- tiff/mono_orientation_2.tiff
- tiff/mono_orientation_3.tiff
- tiff/mono_orientation_4.tiff
- tiff/mono_orientation_5.tiff
- tiff/mono_orientation_6.tiff
- tiff/mono_orientation_7.tiff
- tiff/mono_orientation_8.tiff
- tiff/multipage.tiff
- tiff/oddsize_grayscale.tiff
- tiff/oddsize_mono.tiff
- tiff/original_grayscale.tiff
- tiff/original_indexed.tiff
- tiff/original_mono.tiff
- tiff/original_rgb.tiff
- tiff/rgb_orientation_1.tiff
- tiff/rgb_orientation_2.tiff
- tiff/rgb_orientation_3.tiff
- tiff/rgb_orientation_4.tiff
- tiff/rgb_orientation_5.tiff
- tiff/rgb_orientation_6.tiff
- tiff/rgb_orientation_7.tiff
- tiff/rgb_orientation_8.tiff
- tiff/rgba_adobedeflate_littleendian.tif
- tiff/rgba_lzw_littleendian.tif
- tiff/rgba_nocompression_bigendian.tif
- tiff/rgba_nocompression_littleendian.tif
- tiff/rgba_packbits_littleendian.tif
- tiff/rgba_zipdeflate_littleendian.tif
- tiff/teapot.tiff
- tiff/tiled_grayscale.tiff
- tiff/tiled_indexed.tiff
- tiff/tiled_mono.tiff
- tiff/tiled_oddsize_grayscale.tiff
- tiff/tiled_oddsize_mono.tiff
- tiff/tiled_rgb.tiff)
+set_source_files_properties("../../shared/images/tiff/16bpc.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/16bpc.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/colorful.bmp"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/colorful.bmp"
+)
+set_source_files_properties("../../shared/images/tiff/corrupt-data.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/corrupt-data.tif"
+)
+set_source_files_properties("../../shared/images/tiff/gray16.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/gray16.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/grayscale-ref.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/grayscale-ref.tif"
+)
+set_source_files_properties("../../shared/images/tiff/grayscale.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/grayscale.tif"
+)
+set_source_files_properties("../../shared/images/tiff/image.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/image.tif"
+)
+set_source_files_properties("../../shared/images/tiff/image_100dpi.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/image_100dpi.tif"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/indexed_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/indexed_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/mono_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/mono_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/multipage.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/multipage.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/oddsize_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/oddsize_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/oddsize_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/oddsize_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_indexed.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_indexed.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/original_rgb.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/original_rgb.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_1.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_1.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_2.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_2.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_3.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_3.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_4.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_4.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_5.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_5.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_6.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_6.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_7.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_7.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgb_orientation_8.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgb_orientation_8.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_adobedeflate_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_adobedeflate_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_lzw_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_lzw_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_nocompression_bigendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_nocompression_bigendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_nocompression_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_nocompression_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_packbits_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_packbits_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/rgba_zipdeflate_littleendian.tif"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/rgba_zipdeflate_littleendian.tif"
+)
+set_source_files_properties("../../shared/images/tiff/teapot.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/teapot.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_indexed.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_indexed.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_oddsize_grayscale.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_oddsize_grayscale.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_oddsize_mono.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_oddsize_mono.tiff"
+)
+set_source_files_properties("../../shared/images/tiff/tiled_rgb.tiff"
+ PROPERTIES QT_RESOURCE_ALIAS "tiff/tiled_rgb.tiff"
+)
+set(tiff_resource_files
+ "tiff/16bpc.tiff"
+ "tiff/colorful.bmp"
+ "tiff/corrupt-data.tif"
+ "tiff/gray16.tiff"
+ "tiff/grayscale-ref.tif"
+ "tiff/grayscale.tif"
+ "tiff/image.tif"
+ "tiff/image_100dpi.tif"
+ "tiff/indexed_orientation_1.tiff"
+ "tiff/indexed_orientation_2.tiff"
+ "tiff/indexed_orientation_3.tiff"
+ "tiff/indexed_orientation_4.tiff"
+ "tiff/indexed_orientation_5.tiff"
+ "tiff/indexed_orientation_6.tiff"
+ "tiff/indexed_orientation_7.tiff"
+ "tiff/indexed_orientation_8.tiff"
+ "tiff/mono_orientation_1.tiff"
+ "tiff/mono_orientation_2.tiff"
+ "tiff/mono_orientation_3.tiff"
+ "tiff/mono_orientation_4.tiff"
+ "tiff/mono_orientation_5.tiff"
+ "tiff/mono_orientation_6.tiff"
+ "tiff/mono_orientation_7.tiff"
+ "tiff/mono_orientation_8.tiff"
+ "tiff/multipage.tiff"
+ "tiff/oddsize_grayscale.tiff"
+ "tiff/oddsize_mono.tiff"
+ "tiff/original_grayscale.tiff"
+ "tiff/original_indexed.tiff"
+ "tiff/original_mono.tiff"
+ "tiff/original_rgb.tiff"
+ "tiff/rgb_orientation_1.tiff"
+ "tiff/rgb_orientation_2.tiff"
+ "tiff/rgb_orientation_3.tiff"
+ "tiff/rgb_orientation_4.tiff"
+ "tiff/rgb_orientation_5.tiff"
+ "tiff/rgb_orientation_6.tiff"
+ "tiff/rgb_orientation_7.tiff"
+ "tiff/rgb_orientation_8.tiff"
+ "tiff/rgba_adobedeflate_littleendian.tif"
+ "tiff/rgba_lzw_littleendian.tif"
+ "tiff/rgba_nocompression_bigendian.tif"
+ "tiff/rgba_nocompression_littleendian.tif"
+ "tiff/rgba_packbits_littleendian.tif"
+ "tiff/rgba_zipdeflate_littleendian.tif"
+ "tiff/teapot.tiff"
+ "tiff/tiled_grayscale.tiff"
+ "tiff/tiled_indexed.tiff"
+ "tiff/tiled_mono.tiff"
+ "tiff/tiled_oddsize_grayscale.tiff"
+ "tiff/tiled_oddsize_mono.tiff"
+ "tiff/tiled_rgb.tiff"
+)
+add_qt_resource(tst_bench_qtiff "tiff"
+ PREFIX
+ "/"
+ BASE
+ "../../shared/images"
+ FILES
+ ${tiff_resource_files}
+)
-#### Keys ignored in scope 1:.:.:tiff.pro:<TRUE>:
-# CONFIG = "-app_bundle"