summaryrefslogtreecommitdiffstats
path: root/src/plugins/imageformats/tiff/tiff.pro
blob: 6d306b768e7f1a1344de08bc9a153c974911fc9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
TARGET  = qtiff
load(qt_plugin)

HEADERS += qtiffhandler_p.h
SOURCES += main.cpp qtiffhandler.cpp
OTHER_FILES += tiff.json

config_libtiff {
    unix|win32-g++*: LIBS += -ltiff
    else:win32: LIBS += libtiff.lib
} else {
    include($$PWD/../../../3rdparty/libtiff.pri)
}

DESTDIR = $$QT.gui.plugins/imageformats
target.path += $$[QT_INSTALL_PLUGINS]/imageformats
INSTALLS += target