summaryrefslogtreecommitdiffstats
path: root/src/gui/image/qjpeghandler.pri
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/image/qjpeghandler.pri')
-rw-r--r--src/gui/image/qjpeghandler.pri10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/gui/image/qjpeghandler.pri b/src/gui/image/qjpeghandler.pri
new file mode 100644
index 0000000000..3cb35c95ed
--- /dev/null
+++ b/src/gui/image/qjpeghandler.pri
@@ -0,0 +1,10 @@
+# common to plugin and built-in forms
+INCLUDEPATH *= $$PWD
+HEADERS += $$PWD/qjpeghandler_p.h
+SOURCES += $$PWD/qjpeghandler.cpp
+contains(QT_CONFIG, system-jpeg) {
+ if(unix|win32-g++*): LIBS += -ljpeg
+ else:win32: LIBS += libjpeg.lib
+} else {
+ include($$PWD/../../3rdparty/libjpeg.pri)
+}