source: trunk/plugins/src/imageformats/jpeg/jpeg.pro

Last change on this file was 204, checked in by rudi, 14 years ago

Added plugin source code

File size: 2.7 KB
Line 
1TEMPLATE = lib
2TARGET += qjpeg
3
4CONFIG += qt plugin
5DESTDIR = ../../../imageformats
6
7VERSION = 1.0.0
8REQUIRES = !no-jpeg !jpeg
9
10SOURCES += main.cpp
11system-jpeg {
12 unix:LIBS += -ljpeg
13 win32:LIBS += libjpeg.lib
14}
15!system-jpeg {
16 INCLUDEPATH += ../../../../src/3rdparty/libjpeg
17 SOURCES += \
18 ../../../../src/3rdparty/libjpeg/jcapimin.c \
19 ../../../../src/3rdparty/libjpeg/jcapistd.c \
20 ../../../../src/3rdparty/libjpeg/jccoefct.c \
21 ../../../../src/3rdparty/libjpeg/jccolor.c \
22 ../../../../src/3rdparty/libjpeg/jcdctmgr.c \
23 ../../../../src/3rdparty/libjpeg/jchuff.c \
24 ../../../../src/3rdparty/libjpeg/jcinit.c \
25 ../../../../src/3rdparty/libjpeg/jcmainct.c \
26 ../../../../src/3rdparty/libjpeg/jcmarker.c \
27 ../../../../src/3rdparty/libjpeg/jcmaster.c \
28 ../../../../src/3rdparty/libjpeg/jcomapi.c \
29 ../../../../src/3rdparty/libjpeg/jcparam.c \
30 ../../../../src/3rdparty/libjpeg/jcphuff.c \
31 ../../../../src/3rdparty/libjpeg/jcprepct.c \
32 ../../../../src/3rdparty/libjpeg/jcsample.c \
33 ../../../../src/3rdparty/libjpeg/jctrans.c \
34 ../../../../src/3rdparty/libjpeg/jdapimin.c \
35 ../../../../src/3rdparty/libjpeg/jdapistd.c \
36 ../../../../src/3rdparty/libjpeg/jdatadst.c \
37 ../../../../src/3rdparty/libjpeg/jdatasrc.c \
38 ../../../../src/3rdparty/libjpeg/jdcoefct.c \
39 ../../../../src/3rdparty/libjpeg/jdcolor.c \
40 ../../../../src/3rdparty/libjpeg/jddctmgr.c \
41 ../../../../src/3rdparty/libjpeg/jdhuff.c \
42 ../../../../src/3rdparty/libjpeg/jdinput.c \
43 ../../../../src/3rdparty/libjpeg/jdmainct.c \
44 ../../../../src/3rdparty/libjpeg/jdmarker.c \
45 ../../../../src/3rdparty/libjpeg/jdmaster.c \
46 ../../../../src/3rdparty/libjpeg/jdmerge.c \
47 ../../../../src/3rdparty/libjpeg/jdphuff.c \
48 ../../../../src/3rdparty/libjpeg/jdpostct.c \
49 ../../../../src/3rdparty/libjpeg/jdsample.c \
50 ../../../../src/3rdparty/libjpeg/jdtrans.c \
51 ../../../../src/3rdparty/libjpeg/jerror.c \
52 ../../../../src/3rdparty/libjpeg/jfdctflt.c \
53 ../../../../src/3rdparty/libjpeg/jfdctfst.c \
54 ../../../../src/3rdparty/libjpeg/jfdctint.c \
55 ../../../../src/3rdparty/libjpeg/jidctflt.c \
56 ../../../../src/3rdparty/libjpeg/jidctfst.c \
57 ../../../../src/3rdparty/libjpeg/jidctint.c \
58 ../../../../src/3rdparty/libjpeg/jidctred.c \
59 ../../../../src/3rdparty/libjpeg/jmemmgr.c \
60 ../../../../src/3rdparty/libjpeg/jquant1.c \
61 ../../../../src/3rdparty/libjpeg/jquant2.c \
62 ../../../../src/3rdparty/libjpeg/jutils.c \
63 ../../../../src/3rdparty/libjpeg/jmemnobs.c
64}
65
66
67target.path += $$plugins.path/imageformats
68INSTALLS += target
Note: See TracBrowser for help on using the repository browser.