summaryrefslogtreecommitdiffstats
path: root/src/plugins/imageformats/jpeg/CMakeLists.txt
blob: 94499f2f8d557ff3c68b9f9969b88d7b9c1e90f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

# Generated from jpeg.pro.

qt_find_package(WrapJpeg PROVIDED_TARGETS WrapJpeg::WrapJpeg)

#####################################################################
## QJpegPlugin Plugin:
#####################################################################

qt_internal_add_plugin(QJpegPlugin
    OUTPUT_NAME qjpeg
    PLUGIN_TYPE imageformats
    SOURCES
        main.cpp
        qjpeghandler.cpp qjpeghandler_p.h
    LIBRARIES
        Qt::Core
        Qt::CorePrivate
        Qt::Gui
        Qt::GuiPrivate
        WrapJpeg::WrapJpeg
)

# Fails to build on Windows with a static Qt, PCH enabled and
# the vendored libjpeg sources, due to 'boolean'
# redefinition in jmorecfg.h and rpcndr.h.
if(WIN32 AND NOT BUILD_SHARED_LIBS)
    qt_update_ignore_pch_source(QJpegPlugin "qjpeghandler.cpp")
endif()