blob: 3eabed936f8c49801c396359951b2ca70e5a71f4 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
TEMPLATE = lib
CONFIG = warn_on staticlib $extraopts
HEADERS = qarray.h \
qbuffer.h \
qcache.h \
qgcache.h \
qcollection.h \
qconfig.h \
qcstring.h \
scstring.h \
qdatastream.h \
qdatetime.h \
qdict.h \
qdir.h \
qfeatures.h \
qfile.h \
qfiledefs_p.h \
qfileinfo.h \
qgarray.h \
qfeatures.h \
qgdict.h \
qgeneric.h \
qglist.h \
qglobal.h \
qgstring.h \
qgvector.h \
qintdict.h \
qiodevice.h \
qlist.h \
qptrdict.h \
qqueue.h \
qregexp.h \
qshared.h \
qsortedlist.h \
qstack.h \
qstring.h \
qstringlist.h \
qstrlist.h \
qstrvec.h \
qtextstream.h \
qtl.h \
qvaluelist.h \
qvector.h \
qxml.h \
qvaluestack.h \
qmap.h \
qmodules.h \
qthread.h \
qthread_p.h \
qmutex.h \
qmutex_p.h \
qutfcodec.h \
qwaitcondition.h
SOURCES = qbuffer.cpp \
qcollection.cpp \
scstring.cpp \
qdatastream.cpp \
qdatetime.cpp \
qdir.cpp \
qfile.cpp \
qfileinfo.cpp \
qgarray.cpp \
qgcache.cpp \
qgdict.cpp \
qglist.cpp \
qglobal.cpp \
qgstring.cpp \
qgvector.cpp \
qiodevice.cpp \
qregexp.cpp \
qstring.cpp \
qtextstream.cpp \
qtextcodec.cpp \
qstringlist.cpp \
qxml.cpp \
qmap.cpp \
qthread.cpp \
qmutex.cpp \
qutfcodec.cpp
unix:SOURCES += qfile_unix.cpp \
qdir_unix.cpp \
qfileinfo_unix.cpp \
qthread_unix.cpp \
qmutex_unix.cpp \
qwaitcondition_unix.cpp
win32:SOURCES += qfile_win32.cpp \
qdir_win32.cpp \
qfileinfo_win32.cpp \
qthread_win32.cpp \
qmutex_win32.cpp \
qwaitcondition_win32.cpp
INCLUDEPATH = .
#TMAKE_CXXFLAGS += -DQT_NO_CODECS -DQT_LITE_UNICODE
TMAKE_CXXFLAGS += -DQT_LITE_UNICODE
win32:TMAKE_CXXFLAGS += -DQT_NODLL
win32-g++:TMAKE_CXXFLAGS += -D__CYGWIN__ -DALL_STATIC
OBJECTS_DIR = ../objects
DESTDIR = ../lib
|