From ad2da2d27a590333fc89a56fc58700a09c3017b3 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 17 Dec 2020 14:55:57 +0100 Subject: Remove the qmake project files Remove the qmake project files for most of Qt. Leave the qmake project files for examples, because we still test those in the CI to ensure qmake does not regress. Also leave the qmake project files for utils and other minor parts that lack CMake project files. Task-number: QTBUG-88742 Change-Id: I6cdf059e6204816f617f9624f3ea9822703f73cc Reviewed-by: Edward Welbourne Reviewed-by: Qt CI Bot Reviewed-by: Kai Koehne --- src/gui/image/image.pri | 107 ------------------------------------------------ 1 file changed, 107 deletions(-) delete mode 100644 src/gui/image/image.pri (limited to 'src/gui/image/image.pri') diff --git a/src/gui/image/image.pri b/src/gui/image/image.pri deleted file mode 100644 index f503c97b82..0000000000 --- a/src/gui/image/image.pri +++ /dev/null @@ -1,107 +0,0 @@ -# -*-mode:sh-*- -# Qt image handling - -# Qt kernel module - -HEADERS += \ - image/qbitmap.h \ - image/qimage.h \ - image/qimage_p.h \ - image/qimageiohandler.h \ - image/qimagereader.h \ - image/qimagereaderwriterhelpers_p.h \ - image/qimagewriter.h \ - image/qpaintengine_pic_p.h \ - image/qpicture.h \ - image/qpicture_p.h \ - image/qpixmap.h \ - image/qpixmap_raster_p.h \ - image/qpixmap_blitter_p.h \ - image/qpixmapcache.h \ - image/qpixmapcache_p.h \ - image/qplatformpixmap.h \ - image/qimagepixmapcleanuphooks_p.h \ - image/qicon.h \ - image/qicon_p.h \ - image/qiconloader_p.h \ - image/qiconengine.h \ - image/qiconengineplugin.h \ - image/qabstractfileiconengine_p.h \ - image/qabstractfileiconprovider.h \ - image/qabstractfileiconprovider_p.h - -SOURCES += \ - image/qbitmap.cpp \ - image/qimage.cpp \ - image/qimage_conversions.cpp \ - image/qimageiohandler.cpp \ - image/qimagereader.cpp \ - image/qimagereaderwriterhelpers.cpp \ - image/qimagewriter.cpp \ - image/qpaintengine_pic.cpp \ - image/qpicture.cpp \ - image/qpixmap.cpp \ - image/qpixmapcache.cpp \ - image/qplatformpixmap.cpp \ - image/qpixmap_raster.cpp \ - image/qpixmap_blitter.cpp \ - image/qimagepixmapcleanuphooks.cpp \ - image/qicon.cpp \ - image/qiconloader.cpp \ - image/qiconengine.cpp \ - image/qiconengineplugin.cpp \ - image/qabstractfileiconengine.cpp \ - image/qabstractfileiconprovider.cpp - -qtConfig(movie) { - HEADERS += image/qmovie.h - SOURCES += image/qmovie.cpp -} - -win32: SOURCES += image/qpixmap_win.cpp - -darwin: OBJECTIVE_SOURCES += image/qimage_darwin.mm - -# Built-in image format support -HEADERS += \ - image/qbmphandler_p.h \ - image/qppmhandler_p.h \ - image/qxbmhandler_p.h \ - image/qxpmhandler_p.h - -SOURCES += \ - image/qbmphandler.cpp \ - image/qppmhandler.cpp \ - image/qxbmhandler.cpp \ - image/qxpmhandler.cpp - -qtConfig(png) { - HEADERS += image/qpnghandler_p.h - SOURCES += image/qpnghandler.cpp - QMAKE_USE_PRIVATE += libpng - - win32:mingw { - # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86048 - GCC_VERSION = "$${QMAKE_GCC_MAJOR_VERSION}.$${QMAKE_GCC_MINOR_VERSION}.$${QMAKE_GCC_PATCH_VERSION}" - equals(GCC_VERSION, "8.1.0") { - QMAKE_CXXFLAGS += -fno-reorder-blocks-and-partition - } - } -} - -# SIMD -!android { - SSSE3_SOURCES += image/qimage_ssse3.cpp - NEON_SOURCES += image/qimage_neon.cpp - MIPS_DSPR2_SOURCES += image/qimage_mips_dspr2.cpp - MIPS_DSPR2_ASM += image/qimage_mips_dspr2_asm.S -} else { - # see https://developer.android.com/ndk/guides/abis - arm64-v8a | armeabi-v7a { - SOURCES += image/qimage_neon.cpp - } - x86 | x86_64 { - DEFINES += QT_COMPILER_SUPPORTS_SSE2 QT_COMPILER_SUPPORTS_SSE3 QT_COMPILER_SUPPORTS_SSSE3 - SOURCES += image/qimage_ssse3.cpp - } -} -- cgit v1.2.3