2022-07-05 12:25:19 +00:00
|
|
|
# Copyright (C) 2022 The Qt Company Ltd.
|
2022-08-22 08:37:40 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2022-07-05 12:25:19 +00:00
|
|
|
|
2022-01-07 13:20:47 +00:00
|
|
|
#! [import_plugins]
|
|
|
|
qt_import_plugins(myapp INCLUDE Qt::QLibInputPlugin)
|
|
|
|
#! [import_plugins]
|
|
|
|
|
|
|
|
#! [import_minimal_plugin]
|
|
|
|
qt_import_plugins(myapp
|
|
|
|
INCLUDE_BY_TYPE platforms Qt::MinimalIntegrationPlugin
|
|
|
|
)
|
|
|
|
#! [import_minimal_plugin]
|
|
|
|
|
|
|
|
#! [some_imageformat_plugins]
|
|
|
|
qt_import_plugins(myapp
|
|
|
|
INCLUDE_BY_TYPE imageformats Qt::QJpegPlugin Qt::QGifPlugin
|
|
|
|
)
|
|
|
|
#! [some_imageformat_plugins]
|
|
|
|
|
|
|
|
#! [no_imageformats_plugins]
|
|
|
|
qt_import_plugins(myapp
|
|
|
|
EXCLUDE_BY_TYPE imageformats
|
|
|
|
)
|
|
|
|
#! [no_imageformats_plugins]
|