CMake: Regenerate src/plugins/imageformats
Change-Id: Iea0f1b5f51508b7e8c2cad405dd3e293186c583a Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
This commit is contained in:
parent
0434b7fb38
commit
b65e7b2ffe
@ -1,11 +1,14 @@
|
|||||||
if(QT_FEATURE_gif)
|
# Generated from imageformats.pro.
|
||||||
add_subdirectory(gif)
|
|
||||||
endif()
|
|
||||||
if(QT_FEATURE_ico)
|
if(QT_FEATURE_ico)
|
||||||
add_subdirectory(ico)
|
add_subdirectory(ico)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(QT_FEATURE_jpeg)
|
if(QT_FEATURE_jpeg)
|
||||||
add_subdirectory(jpeg)
|
add_subdirectory(jpeg)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if(QT_FEATURE_gif)
|
||||||
|
add_subdirectory(gif)
|
||||||
|
endif()
|
||||||
|
@ -9,6 +9,13 @@ add_qt_plugin(qgif
|
|||||||
SOURCES
|
SOURCES
|
||||||
main.cpp main.h
|
main.cpp main.h
|
||||||
qgifhandler.cpp qgifhandler_p.h
|
qgifhandler.cpp qgifhandler_p.h
|
||||||
LIBRARIES
|
LIBRARIES # special case
|
||||||
Qt::Gui
|
Qt::GuiPrivate # special case
|
||||||
|
PUBLIC_LIBRARIES # special case
|
||||||
|
Qt::Gui # special case
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:gif.pro:<TRUE>:
|
||||||
|
# OTHER_FILES = "gif.json"
|
||||||
|
# PLUGIN_CLASS_NAME = "QGifPlugin"
|
||||||
|
# _LOADED = "qt_plugin"
|
||||||
|
@ -10,6 +10,12 @@ add_qt_plugin(qico
|
|||||||
main.cpp main.h
|
main.cpp main.h
|
||||||
qicohandler.cpp qicohandler.h
|
qicohandler.cpp qicohandler.h
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
Qt::Gui
|
Qt::GuiPrivate # special case
|
||||||
Qt::CorePrivate
|
PUBLIC_LIBRARIES # special case
|
||||||
|
Qt::Gui # special case
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:ico.pro:<TRUE>:
|
||||||
|
# OTHER_FILES = "ico.json"
|
||||||
|
# PLUGIN_CLASS_NAME = "QICOPlugin"
|
||||||
|
# _LOADED = "qt_plugin"
|
||||||
|
@ -1,19 +1,26 @@
|
|||||||
# Generated from jpeg.pro.
|
# Generated from jpeg.pro.
|
||||||
|
|
||||||
|
qt_find_package(JPEG) # special case
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
## qjpeg Plugin:
|
## qjpeg Plugin:
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
qt_find_package(JPEG) # special case
|
|
||||||
|
|
||||||
add_qt_plugin(qjpeg
|
add_qt_plugin(qjpeg
|
||||||
TYPE imageformats
|
TYPE imageformats
|
||||||
SOURCES
|
SOURCES
|
||||||
main.cpp main.h
|
main.cpp main.h
|
||||||
qjpeghandler.cpp qjpeghandler_p.h
|
qjpeghandler.cpp qjpeghandler_p.h
|
||||||
LIBRARIES
|
LIBRARIES
|
||||||
Qt::Gui
|
# Qt::CorePrivate # special case: remove
|
||||||
Qt::CorePrivate
|
|
||||||
Qt::GuiPrivate
|
Qt::GuiPrivate
|
||||||
|
PUBLIC_LIBRARIES # special case
|
||||||
JPEG::JPEG
|
JPEG::JPEG
|
||||||
|
# Qt::Core # special case: remove
|
||||||
|
Qt::Gui # special case
|
||||||
)
|
)
|
||||||
|
|
||||||
|
#### Keys ignored in scope 1:.:.:jpeg.pro:<TRUE>:
|
||||||
|
# OTHER_FILES = "jpeg.json"
|
||||||
|
# PLUGIN_CLASS_NAME = "QJpegPlugin"
|
||||||
|
# _LOADED = "qt_plugin"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user