[Scummvm-cvs-logs] SF.net SVN: scummvm: [27940] scummex/branches/gsoc2007-gameresbrowser

zbychs at users.sourceforge.net zbychs at users.sourceforge.net
Fri Jul 6 15:51:06 CEST 2007


Revision: 27940
          http://scummvm.svn.sourceforge.net/scummvm/?rev=27940&view=rev
Author:   zbychs
Date:     2007-07-06 06:51:05 -0700 (Fri, 06 Jul 2007)

Log Message:
-----------
Added generation of dependencies to Makefile.

Modified Paths:
--------------
    scummex/branches/gsoc2007-gameresbrowser/gcc/Makefile
    scummex/branches/gsoc2007-gameresbrowser/src/gui/BitmapPanel.h
    scummex/branches/gsoc2007-gameresbrowser/src/gui/Test1.cpp
    scummex/branches/gsoc2007-gameresbrowser/src/plugins/BMPParser.cpp
    scummex/branches/gsoc2007-gameresbrowser/src/plugins/Directories.cpp
    scummex/branches/gsoc2007-gameresbrowser/src/plugins/wx2scstream.h

Added Paths:
-----------
    scummex/branches/gsoc2007-gameresbrowser/gcc/deps.d

Modified: scummex/branches/gsoc2007-gameresbrowser/gcc/Makefile
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/gcc/Makefile	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/gcc/Makefile	2007-07-06 13:51:05 UTC (rev 27940)
@@ -70,7 +70,7 @@
 GUI_OBJECTS = $(patsubst %, $(GUI_OUTPUT)/%, $(notdir $(GUI_OBJECTS_) ) )
 
 ALL_SOURCES = $(COMMON_SOURCES) $(CORE_SOURCES) $(PLUGINS_SOURCES) $(GUI_SOURCES)
-#ALL_OBJECTS = $(CORE_OBJECTS) $(PLUGINS_OBJECTS) $(GUI_OBJECTS)
+ALL_OBJECTS = $(CORE_OBJECTS) $(PLUGINS_OBJECTS) $(GUI_OBJECTS)
 ALL_OUTPUT = $(CORE_OUTPUT) $(PLUGINS_OUTPUT) $(GUI_OUTPUT)
 
 # TEST_OBJECTS = $(RAW_TEST_OBJECTS) $(filter-out main.o, $(OBJECTS) )
@@ -122,7 +122,7 @@
 DEP_BASE_FLAGS = -g $(patsubst %, -I%, $(DEP_HEADERS_DIRS) ) $(patsubst %, -D%, $(GLOBAL_DEFINES) )
 BASE_FLAGS = -g $(patsubst %, -I%, $(HEADERS_DIRS) ) $(patsubst %, -D%, $(GLOBAL_DEFINES) )
 CFLAGS = $(BASE_FLAGS) $(WX_FLAGS)
-DEPFLAGS = $(DEP_BASE_FLAGS) $(WX_FLAGS) $(filter-out -I%, $(WX_FLAGS) ) -D$(DEP_UNICODE)
+DEPFLAGS = $(DEP_BASE_FLAGS) $(filter-out -I%, $(WX_FLAGS) ) -D$(DEP_UNICODE)
 
 MKDIR = mkdir -p
 
@@ -151,20 +151,38 @@
 
 ###########################################################################################
 
-ALL_D = $(ALL_SOURCES:.cpp=.d)
-
-$(ALL_D) : %.d : %.cpp
-	g++ -MM $(CFLAGS) $< > $@
-
 #$(ALL_D) : %.d : %.cpp
 #	@set -e; rm -f $@; \
 #	g++ -MM $(CFLAGS) $< > $@.$$$$; \
 #	sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
 #	rm -f $@.$$$$
 
+ALL_D = $(ALL_SOURCES:.cpp=.d)
+
+#$(ALL_D) : $(OUT_DIR)%.d : $(SOURCES_DIR)%.cpp
+#	g++ -MM $(CFLAGS) $< > $@
+
+#deps.d : $(ALL_SOURCES)
+#	g++ -MM $(DEPFLAGS) $^ > $@
+
+$(ALL_D) : %.d : %.cpp
+	g++ -MM $(DEPFLAGS) -MT $(patsubst %.cpp, %.o, $(patsubst $(SOURCES_DIR)%, $(OUT_DIR)%, $<)) $< >> deps.d
+
+in-dep : $(ALL_D)
+
+#broken!!!
 dep:
-	@echo "make dep is broken for now. Sorry."
+	rm -f deps.d
+	echo "" > deps.d
+	$(MAKE) in-dep
 
+include deps.d
+
+#dep: deps.d
+#	rm -f deps.d
+#	$(MAKE) in-dep
+#	@echo "make dep is broken for now. Sorry."
+
 #dep: $(ALL_D)
 
 #include $(ALL_D)
@@ -176,7 +194,7 @@
 #dep:
 #1;2B	$(MAKE) -C../src -f../gcc/Makefile in-dep
 
-in-dep:
+#in-dep: $(ALL_D)
 #	makedepend -f../gcc/Makefile -Y -p$(OUT_DIR)/ -- $(DEP_DEPFLAGS) -- $(DEP_ALL_SOURCES)
 
 ###########################################################################################

Added: scummex/branches/gsoc2007-gameresbrowser/gcc/deps.d
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/gcc/deps.d	                        (rev 0)
+++ scummex/branches/gsoc2007-gameresbrowser/gcc/deps.d	2007-07-06 13:51:05 UTC (rev 27940)
@@ -0,0 +1,227 @@
+
+out/core/common/simplefile.o: ../src/core/common/simplefile.cpp \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/simplefile.h ../src/core/common/stream.h \
+  ../src/core/common/scummsys.h
+out/core/common/stream.o: ../src/core/common/stream.cpp \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/stream.h ../src/core/common/scummsys.h
+out/core/CoreFileTypes.o: ../src/core/CoreFileTypes.cpp \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/CoreFileTypes.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h
+out/core/CoreIntf.o: ../src/core/CoreIntf.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/CoreIntf.h ../src/core/pinslot.h \
+  ../src/core/guid.h ../src/core/safe_static.h ../src/core/debugmem.h \
+  ../src/core/rcobject.h ../src/core/pinslot_detail.h \
+  ../src/core/functionalex.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/core/common/simplefile.h ../src/core/common/stream.h
+out/core/core_stdafx.o: ../src/core/core_stdafx.cpp \
+  ../src/core/core_stdafx.h ../src/core/tostring.h
+out/core/guid.o: ../src/core/guid.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/debugmem.h
+out/core/ochain.o: ../src/core/ochain.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/ochain.h ../src/core/pinslot.h \
+  ../src/core/guid.h ../src/core/safe_static.h ../src/core/debugmem.h \
+  ../src/core/rcobject.h ../src/core/pinslot_detail.h \
+  ../src/core/functionalex.h ../src/core/oregistry.h ../src/core/plugin.h \
+  ../src/core/plugin_detail.h ../src/core/treealgos.h
+out/core/oregistry.o: ../src/core/oregistry.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/oregistry.h ../src/core/plugin.h \
+  ../src/core/guid.h ../src/core/safe_static.h ../src/core/pinslot.h \
+  ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/plugin_detail.h ../src/core/ftregistry.h \
+  ../src/core/FileTypeRecognizer.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/core/CoreFileTypes.h
+out/core/pinslot.o: ../src/core/pinslot.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h
+out/core/rcobject.o: ../src/core/rcobject.cpp ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/rcobject.h
+out/core/safe_static.o: ../src/core/safe_static.cpp \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/safe_static.h
+out/plugins/BMPParser.o: ../src/plugins/BMPParser.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/BMPParser.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/plugins/GUIIntf.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/plugins/wx2scstream.h \
+  ../src/core/common/stream.h
+out/plugins/Directories.o: ../src/plugins/Directories.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/Directories.h ../src/plugins/VirtualNode.h \
+  ../src/core/pinslot.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/CoreIntf.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/core/common/simplefile.h ../src/core/common/stream.h \
+  ../src/core/tostring.h
+out/plugins/DiskFileProvider.o: ../src/plugins/DiskFileProvider.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/DiskFileProvider.h ../src/core/pinslot.h \
+  ../src/core/guid.h ../src/core/safe_static.h ../src/core/debugmem.h \
+  ../src/core/rcobject.h ../src/core/pinslot_detail.h \
+  ../src/core/functionalex.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/core/common/simplefile.h \
+  ../src/core/common/stream.h
+out/plugins/FileTypeRecognizer.o: ../src/plugins/FileTypeRecognizer.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/core/FileTypeRecognizer.h ../src/core/pinslot.h \
+  ../src/core/guid.h ../src/core/safe_static.h ../src/core/debugmem.h \
+  ../src/core/rcobject.h ../src/core/pinslot_detail.h \
+  ../src/core/functionalex.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/core/CoreFileTypes.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/ochain.h ../src/core/safe_static.h
+out/plugins/GUIIntf.o: ../src/plugins/GUIIntf.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/GUIIntf.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h
+out/plugins/ftregistry.o: ../src/plugins/ftregistry.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/core/ftregistry.h ../src/core/plugin.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/pinslot.h ../src/core/debugmem.h \
+  ../src/core/rcobject.h ../src/core/pinslot_detail.h \
+  ../src/core/functionalex.h ../src/core/plugin_detail.h \
+  ../src/core/FileTypeRecognizer.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/core/CoreFileTypes.h
+out/plugins/plugins_stdafx.o: ../src/plugins/plugins_stdafx.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h
+out/plugins/wx2scstream.o: ../src/plugins/wx2scstream.cpp \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/wx2scstream.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/core/debugmem.h
+out/gui/BitmapPanel.o: ../src/gui/BitmapPanel.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/gui/BitmapPanel.h
+out/gui/BrowserApp.o: ../src/gui/BrowserApp.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/gui/BrowserApp.h ../src/gui/MainForm.h ../src/gui/guicon.h
+out/gui/DirectoryPresenter.o: ../src/gui/DirectoryPresenter.cpp \
+  ../src/gui/gui_stdafx.h ../src/plugins/plugins_stdafx.h \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/gui/DirectoryPresenter.h \
+  ../src/core/pinslot.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/ochain.h ../src/core/CoreIntf.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/gui/ExplorationTree.h ../src/core/oregistry.h \
+  ../src/core/plugin.h ../src/core/plugin_detail.h \
+  ../src/core/ftregistry.h ../src/core/FileTypeRecognizer.h \
+  ../src/core/CoreIntf.h ../src/core/CoreFileTypes.h
+out/gui/ExplorationTree.o: ../src/gui/ExplorationTree.cpp \
+  ../src/gui/gui_stdafx.h ../src/plugins/plugins_stdafx.h \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/gui/ExplorationTree.h \
+  ../src/gui/PanelProvider.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/gui/DirectoryPresenter.h \
+  ../src/core/ochain.h ../src/core/CoreIntf.h
+out/gui/FilePresenter.o: ../src/gui/FilePresenter.cpp \
+  ../src/gui/gui_stdafx.h ../src/plugins/plugins_stdafx.h \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/gui/FilePresenter.h \
+  ../src/gui/PanelProvider.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/core/CoreIntf.h
+out/gui/ImagePresenter.o: ../src/gui/ImagePresenter.cpp \
+  ../src/gui/gui_stdafx.h ../src/plugins/plugins_stdafx.h \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/gui/ImagePresenter.h \
+  ../src/gui/PanelProvider.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/plugins/GUIIntf.h \
+  ../src/gui/BitmapPanel.h
+out/gui/MainForm.o: ../src/gui/MainForm.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h ../src/gui/MainForm.h \
+  ../src/gui/ExplorationTree.h ../src/core/ftregistry.h \
+  ../src/core/plugin.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/pinslot.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/plugin_detail.h ../src/core/FileTypeRecognizer.h \
+  ../src/core/CoreIntf.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/core/CoreFileTypes.h ../src/core/oregistry.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/safe_static.h
+out/gui/PanelProvider.o: ../src/gui/PanelProvider.cpp \
+  ../src/gui/gui_stdafx.h ../src/plugins/plugins_stdafx.h \
+  ../src/core/core_stdafx.h ../src/core/tostring.h \
+  ../src/core/core_stdafx.h ../src/gui/PanelProvider.h \
+  ../src/core/pinslot.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/plugins/VirtualNode.h ../src/core/CoreIntf.h \
+  ../src/core/common/stream.h ../src/core/common/common_stdafx.h \
+  ../src/core/common/scummsys.h ../src/gui/ExplorationTree.h
+out/gui/Test1.o: ../src/gui/Test1.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h ../src/gui/MainForm.h \
+  ../src/core/plugin.h ../src/core/guid.h ../src/core/safe_static.h \
+  ../src/core/pinslot.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/plugin_detail.h ../src/core/oregistry.h \
+  ../src/gui/ExplorationTree.h ../src/plugins/VirtualNode.h \
+  ../src/core/CoreIntf.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/plugins/Directories.h ../src/plugins/VirtualNode.h \
+  ../src/gui/DirectoryPresenter.h ../src/core/ochain.h \
+  ../src/core/CoreIntf.h ../src/plugins/BMPParser.h \
+  ../src/plugins/GUIIntf.h ../src/gui/ImagePresenter.h \
+  ../src/gui/PanelProvider.h ../src/plugins/GUIIntf.h \
+  ../src/gui/FilePresenter.h ../src/core/FileTypeRecognizer.h \
+  ../src/core/CoreIntf.h ../src/core/CoreFileTypes.h
+out/gui/VirtualNode.o: ../src/gui/VirtualNode.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h \
+  ../src/plugins/VirtualNode.h ../src/core/pinslot.h ../src/core/guid.h \
+  ../src/core/safe_static.h ../src/core/debugmem.h ../src/core/rcobject.h \
+  ../src/core/pinslot_detail.h ../src/core/functionalex.h \
+  ../src/core/CoreIntf.h ../src/core/common/stream.h \
+  ../src/core/common/common_stdafx.h ../src/core/common/scummsys.h \
+  ../src/gui/ExplorationTree.h ../src/core/common/simplefile.h \
+  ../src/core/common/stream.h
+out/gui/gui_stdafx.o: ../src/gui/gui_stdafx.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h
+out/gui/guicon.o: ../src/gui/guicon.cpp ../src/gui/gui_stdafx.h \
+  ../src/plugins/plugins_stdafx.h ../src/core/core_stdafx.h \
+  ../src/core/tostring.h ../src/core/core_stdafx.h


Property changes on: scummex/branches/gsoc2007-gameresbrowser/gcc/deps.d
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native

Modified: scummex/branches/gsoc2007-gameresbrowser/src/gui/BitmapPanel.h
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/src/gui/BitmapPanel.h	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/src/gui/BitmapPanel.h	2007-07-06 13:51:05 UTC (rev 27940)
@@ -7,7 +7,7 @@
 // For compilers that support precompilation, includes wxT("wx/wx.h").
 #include "gui_stdafx.h"
 
-#include "wx/panel.h"
+#include <wx/panel.h>
 
 /////////////////////////////////////////////////////////////////////////////
 /////////////////////////////////////////////////////////////////////////////

Modified: scummex/branches/gsoc2007-gameresbrowser/src/gui/Test1.cpp
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/src/gui/Test1.cpp	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/src/gui/Test1.cpp	2007-07-06 13:51:05 UTC (rev 27940)
@@ -11,7 +11,7 @@
 
 #include "MainForm.h"
 
-#include "wx/filename.h"
+#include <wx/filename.h>
 
 #include <iostream>
 #include <fstream>

Modified: scummex/branches/gsoc2007-gameresbrowser/src/plugins/BMPParser.cpp
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/src/plugins/BMPParser.cpp	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/src/plugins/BMPParser.cpp	2007-07-06 13:51:05 UTC (rev 27940)
@@ -7,7 +7,7 @@
 
 #include <iostream>
 
-#include "wx/image.h"
+#include <wx/image.h>
 #include "wx2scstream.h"
 
 #include "debugmem.h"

Modified: scummex/branches/gsoc2007-gameresbrowser/src/plugins/Directories.cpp
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/src/plugins/Directories.cpp	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/src/plugins/Directories.cpp	2007-07-06 13:51:05 UTC (rev 27940)
@@ -11,8 +11,8 @@
 
 #include <stdlib.h>
 
-#include "wx/filesys.h"
-#include "wx/filename.h"
+#include <wx/filesys.h>
+#include <wx/filename.h>
 
 #include "tostring.h"
 

Modified: scummex/branches/gsoc2007-gameresbrowser/src/plugins/wx2scstream.h
===================================================================
--- scummex/branches/gsoc2007-gameresbrowser/src/plugins/wx2scstream.h	2007-07-06 13:21:43 UTC (rev 27939)
+++ scummex/branches/gsoc2007-gameresbrowser/src/plugins/wx2scstream.h	2007-07-06 13:51:05 UTC (rev 27940)
@@ -14,7 +14,7 @@
 
 //#include "wx/defs.h"
 
-#include "wx/stream.h"
+#include <wx/stream.h>
 #include "common/stream.h"
 
 namespace Browser {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list