summaryrefslogtreecommitdiffstats
path: root/qmake/Makefile.win32
diff options
context:
space:
mode:
authorJoão Abecasis <joao.abecasis@nokia.com>2010-08-30 08:01:42 (GMT)
committerJoão Abecasis <joao.abecasis@nokia.com>2010-08-30 11:59:59 (GMT)
commite2eeb1b2410d32b629c675b63dd84c9dcb976546 (patch)
treec81c7703cf3288cc810f58faf19ac593a8217190 /qmake/Makefile.win32
parenteeae8a7479cdb0b716b28ad502abed69dbf339b2 (diff)
downloadQt-e2eeb1b2410d32b629c675b63dd84c9dcb976546.zip
Qt-e2eeb1b2410d32b629c675b63dd84c9dcb976546.tar.gz
Qt-e2eeb1b2410d32b629c675b63dd84c9dcb976546.tar.bz2
Adding QFileSystemEntry and QFileSystemEngine to build system
Since we're refactoring code out of QFSFileEngine the new internal classes have to be compiled in together with the old engines. For the time being, we'll assume Mac uses the unix version of the engine. We'll fork those only if and as needed.
Diffstat (limited to 'qmake/Makefile.win32')
-rw-r--r--qmake/Makefile.win3210
1 files changed, 10 insertions, 0 deletions
diff --git a/qmake/Makefile.win32 b/qmake/Makefile.win32
index b58757c..b76348b 100644
--- a/qmake/Makefile.win32
+++ b/qmake/Makefile.win32
@@ -88,6 +88,8 @@ QTOBJS= \
qbitarray.obj \
qbuffer.obj \
qcryptographichash.obj \
+ qfilesystementry.obj \
+ qfilesystemengine_win.obj \
qfsfileengine.obj \
qfsfileengine_iterator.obj \
qbytearray.obj \
@@ -141,6 +143,8 @@ clean::
-del qbuffer.obj
-del qcryptographichash.obj
-del qlinkedlist.obj
+ -del qfilesystementry.obj
+ -del qfilesystemengine_win.obj
-del qfsfileengine.obj
-del qfsfileengine_iterator.obj
-del qbytearray.obj
@@ -310,6 +314,12 @@ qfile.obj: $(SOURCE_PATH)\src\corelib\io\qfile.cpp
qtemporaryfile.obj: $(SOURCE_PATH)\src\corelib\io\qtemporaryfile.cpp
$(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qtemporaryfile.cpp
+qfilesystementry.obj: $(SOURCE_PATH)\src\corelib\io\qfilesystementry.cpp
+ $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfilesystementry.cpp
+
+qfilesystemengine_win.obj: $(SOURCE_PATH)\src\corelib\io\qfilesystemengine_win.cpp
+ $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfilesystemengine_win.cpp
+
qfsfileengine_win.obj: $(SOURCE_PATH)\src\corelib\io\qfsfileengine_win.cpp
$(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfsfileengine_win.cpp