summaryrefslogtreecommitdiffstats
path: root/Tools/qmake/projects/qtjpeg/qtjpeg.pro
blob: 89d3e611335fd11148611a499d206613bb6d9f5e (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
load(functions)

TARGET = qtjpeg

CONFIG += \
    static \
    hide_symbols \
    exceptions_off rtti_off warn_off \
    installed

# Poor man's qt_helper_lib
TEMPLATE = lib
CONFIG += staticlib
CONFIG -= qt

# In debug_and_release build we need only one copy of library, let it be release
debug_and_release {
    CONFIG -= debug_and_release debug
    CONFIG += release
}

DESTDIR = $$ROOT_BUILD_DIR/lib

include($$QTBASE_DIR/src/3rdparty/libjpeg.pri)