| 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:unix { |
| 63 |
SOURCES += io/qfsfileengine_unix.cpp |
| 64 |
SOURCES += io/qfsfileengine_iterator_unix.cpp |
| 65 |
SOURCES += io/qprocess_unix.cpp |
| 66 |
mac:SOURCES += io/qsettings_mac.cpp |
| 67 |
|
| 68 |
linux-*:{ |
| 69 |
SOURCES += \ |
| 70 |
io/qfilesystemwatcher_inotify.cpp \ |
| 71 |
io/qfilesystemwatcher_dnotify.cpp |
| 72 |
|
| 73 |
HEADERS += \ |
| 74 |
io/qfilesystemwatcher_inotify_p.h \ |
| 75 |
io/qfilesystemwatcher_dnotify_p.h |
| 76 |
} |
| 77 |
|
| 78 |
freebsd-*|macx-*|darwin-*|openbsd-*:{ |
| 79 |
SOURCES += io/qfilesystemwatcher_kqueue.cpp |
| 80 |
HEADERS += io/qfilesystemwatcher_kqueue_p.h |
| 81 |
} |
| 82 |
} |