1 | wince*: {
|
---|
2 | DEFINES += NO_GETENV
|
---|
3 | contains(CE_ARCH,x86):CONFIG -= stl exceptions
|
---|
4 | contains(CE_ARCH,x86):CONFIG += exceptions_off
|
---|
5 | }
|
---|
6 |
|
---|
7 | #Disable warnings in 3rdparty code due to unused arguments
|
---|
8 | symbian: {
|
---|
9 | QMAKE_CXXFLAGS.CW += -W nounusedarg
|
---|
10 | TARGET.UID3=0x2001E61B
|
---|
11 | } else:contains(QMAKE_CC, gcc): {
|
---|
12 | QMAKE_CFLAGS_WARN_ON += -Wno-unused-parameter -Wno-main
|
---|
13 | }
|
---|
14 |
|
---|
15 |
|
---|
16 | INCLUDEPATH += $$PWD/libjpeg
|
---|
17 | SOURCES += \
|
---|
18 | $$PWD/libjpeg/jaricom.c \
|
---|
19 | $$PWD/libjpeg/jcapimin.c \
|
---|
20 | $$PWD/libjpeg/jcapistd.c \
|
---|
21 | $$PWD/libjpeg/jcarith.c \
|
---|
22 | $$PWD/libjpeg/jccoefct.c \
|
---|
23 | $$PWD/libjpeg/jccolor.c \
|
---|
24 | $$PWD/libjpeg/jcdctmgr.c \
|
---|
25 | $$PWD/libjpeg/jchuff.c \
|
---|
26 | $$PWD/libjpeg/jcinit.c \
|
---|
27 | $$PWD/libjpeg/jcmainct.c \
|
---|
28 | $$PWD/libjpeg/jcmarker.c \
|
---|
29 | $$PWD/libjpeg/jcmaster.c \
|
---|
30 | $$PWD/libjpeg/jcomapi.c \
|
---|
31 | $$PWD/libjpeg/jcparam.c \
|
---|
32 | $$PWD/libjpeg/jcprepct.c \
|
---|
33 | $$PWD/libjpeg/jcsample.c \
|
---|
34 | $$PWD/libjpeg/jctrans.c \
|
---|
35 | $$PWD/libjpeg/jdapimin.c \
|
---|
36 | $$PWD/libjpeg/jdapistd.c \
|
---|
37 | $$PWD/libjpeg/jdarith.c \
|
---|
38 | $$PWD/libjpeg/jdatadst.c \
|
---|
39 | $$PWD/libjpeg/jdatasrc.c \
|
---|
40 | $$PWD/libjpeg/jdcoefct.c \
|
---|
41 | $$PWD/libjpeg/jdcolor.c \
|
---|
42 | $$PWD/libjpeg/jddctmgr.c \
|
---|
43 | $$PWD/libjpeg/jdhuff.c \
|
---|
44 | $$PWD/libjpeg/jdinput.c \
|
---|
45 | $$PWD/libjpeg/jdmainct.c \
|
---|
46 | $$PWD/libjpeg/jdmarker.c \
|
---|
47 | $$PWD/libjpeg/jdmaster.c \
|
---|
48 | $$PWD/libjpeg/jdmerge.c \
|
---|
49 | $$PWD/libjpeg/jdpostct.c \
|
---|
50 | $$PWD/libjpeg/jdsample.c \
|
---|
51 | $$PWD/libjpeg/jdtrans.c \
|
---|
52 | $$PWD/libjpeg/jerror.c \
|
---|
53 | $$PWD/libjpeg/jfdctflt.c \
|
---|
54 | $$PWD/libjpeg/jfdctfst.c \
|
---|
55 | $$PWD/libjpeg/jfdctint.c \
|
---|
56 | $$PWD/libjpeg/jidctflt.c \
|
---|
57 | $$PWD/libjpeg/jidctfst.c \
|
---|
58 | $$PWD/libjpeg/jidctint.c \
|
---|
59 | $$PWD/libjpeg/jquant1.c \
|
---|
60 | $$PWD/libjpeg/jquant2.c \
|
---|
61 | $$PWD/libjpeg/jutils.c \
|
---|
62 | $$PWD/libjpeg/jmemmgr.c \
|
---|
63 | $$PWD/libjpeg/jmemnobs.c
|
---|