1 | # Qt core io module
|
---|
2 |
|
---|
3 | HEADERS += \
|
---|
4 | io/qabstractfileengine.h \
|
---|
5 | io/qabstractfileengine_p.h \
|
---|
6 | io/qbuffer.h \
|
---|
7 | io/qdatastream.h \
|
---|
8 | io/qdebug.h \
|
---|
9 | io/qdir.h \
|
---|
10 | io/qdiriterator.h \
|
---|
11 | io/qfile.h \
|
---|
12 | io/qfileinfo.h \
|
---|
13 | io/qfileinfo_p.h \
|
---|
14 | io/qiodevice.h \
|
---|
15 | io/qiodevice_p.h \
|
---|
16 | io/qprocess.h \
|
---|
17 | io/qprocess_p.h \
|
---|
18 | io/qtextstream.h \
|
---|
19 | io/qtemporaryfile.h \
|
---|
20 | io/qresource_p.h \
|
---|
21 | io/qresource_iterator_p.h \
|
---|
22 | io/qurl.h \
|
---|
23 | io/qsettings.h \
|
---|
24 | io/qsettings_p.h \
|
---|
25 | io/qfsfileengine.h \
|
---|
26 | io/qfsfileengine_p.h \
|
---|
27 | io/qfsfileengine_iterator_p.h \
|
---|
28 | io/qfilesystemwatcher.h \
|
---|
29 | io/qfilesystemwatcher_p.h
|
---|
30 |
|
---|
31 | SOURCES += \
|
---|
32 | io/qabstractfileengine.cpp \
|
---|
33 | io/qbuffer.cpp \
|
---|
34 | io/qdatastream.cpp \
|
---|
35 | io/qdebug.cpp \
|
---|
36 | io/qdir.cpp \
|
---|
37 | io/qdiriterator.cpp \
|
---|
38 | io/qfile.cpp \
|
---|
39 | io/qfileinfo.cpp \
|
---|
40 | io/qiodevice.cpp \
|
---|
41 | io/qprocess.cpp \
|
---|
42 | io/qtextstream.cpp \
|
---|
43 | io/qtemporaryfile.cpp \
|
---|
44 | io/qresource.cpp \
|
---|
45 | io/qresource_iterator.cpp \
|
---|
46 | io/qurl.cpp \
|
---|
47 | io/qsettings.cpp \
|
---|
48 | io/qfsfileengine.cpp \
|
---|
49 | io/qfsfileengine_iterator.cpp \
|
---|
50 | io/qfilesystemwatcher.cpp
|
---|
51 |
|
---|
52 | win32 {
|
---|
53 | SOURCES += io/qsettings_win.cpp
|
---|
54 | SOURCES += io/qprocess_win.cpp
|
---|
55 | SOURCES += io/qfsfileengine_win.cpp
|
---|
56 |
|
---|
57 | SOURCES += io/qfsfileengine_iterator_win.cpp
|
---|
58 | SOURCES += io/qfilesystemwatcher_win.cpp
|
---|
59 | HEADERS += io/qfilesystemwatcher_win_p.h
|
---|
60 | HEADERS += io/qwindowspipewriter_p.h
|
---|
61 | SOURCES += io/qwindowspipewriter.cpp
|
---|
62 | } else:os2 {
|
---|
63 | SOURCES += io/qsettings_os2.cpp
|
---|
64 | # @todo later
|
---|
65 | # SOURCES += io/qprocess_os2.cpp
|
---|
66 | SOURCES += io/qfsfileengine_os2.cpp
|
---|
67 |
|
---|
68 | SOURCES += io/qfsfileengine_iterator_os2.cpp
|
---|
69 | # @todo later
|
---|
70 | # SOURCES += io/qfilesystemwatcher_os2.cpp
|
---|
71 | # HEADERS += io/qfilesystemwatcher_os2_p.h
|
---|
72 | } else:unix {
|
---|
73 | SOURCES += io/qfsfileengine_unix.cpp
|
---|
74 | SOURCES += io/qfsfileengine_iterator_unix.cpp
|
---|
75 | SOURCES += io/qprocess_unix.cpp
|
---|
76 | mac:SOURCES += io/qsettings_mac.cpp
|
---|
77 |
|
---|
78 | linux-*:{
|
---|
79 | SOURCES += \
|
---|
80 | io/qfilesystemwatcher_inotify.cpp \
|
---|
81 | io/qfilesystemwatcher_dnotify.cpp
|
---|
82 |
|
---|
83 | HEADERS += \
|
---|
84 | io/qfilesystemwatcher_inotify_p.h \
|
---|
85 | io/qfilesystemwatcher_dnotify_p.h
|
---|
86 | }
|
---|
87 |
|
---|
88 | freebsd-*|macx-*|darwin-*|openbsd-*:{
|
---|
89 | SOURCES += io/qfilesystemwatcher_kqueue.cpp
|
---|
90 | HEADERS += io/qfilesystemwatcher_kqueue_p.h
|
---|
91 | }
|
---|
92 | }
|
---|