add ibrowser to XML build
Modified: branches/xmlbuildsystem/reactos/bootdata/packages/reactos.dff
Modified: branches/xmlbuildsystem/reactos/subsys/system/directory.xml
Modified: branches/xmlbuildsystem/reactos/subsys/system/ibrowser/Makefile
Added: branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml

Modified: branches/xmlbuildsystem/reactos/bootdata/packages/reactos.dff
--- branches/xmlbuildsystem/reactos/bootdata/packages/reactos.dff	2005-03-05 17:27:21 UTC (rev 13829)
+++ branches/xmlbuildsystem/reactos/bootdata/packages/reactos.dff	2005-03-05 17:52:12 UTC (rev 13830)
@@ -147,6 +147,7 @@
 subsys\system\explorer\explorer.exe     4
 subsys\system\explorer\explorer-cfg-template.xml 4
 subsys\system\explorer\notifyhook\notifyhook.dll 1
+subsys\system\ibrowser\ibrowser.exe     1
 subsys\system\format\format.exe         1
 subsys\system\notepad\notepad.exe       1
 subsys\system\regedit\regedit.exe       4

Modified: branches/xmlbuildsystem/reactos/subsys/system/directory.xml
--- branches/xmlbuildsystem/reactos/subsys/system/directory.xml	2005-03-05 17:27:21 UTC (rev 13829)
+++ branches/xmlbuildsystem/reactos/subsys/system/directory.xml	2005-03-05 17:52:12 UTC (rev 13830)
@@ -10,6 +10,9 @@
 <directory name="explorer">
 	<xi:include href="explorer/explorer.xml" />
 </directory>
+<directory name="ibrowser">
+	<xi:include href="ibrowser/ibrowser.xml" />
+</directory>
 <directory name="format">
 	<xi:include href="format/format.xml" />
 </directory>

Modified: branches/xmlbuildsystem/reactos/subsys/system/ibrowser/Makefile
--- branches/xmlbuildsystem/reactos/subsys/system/ibrowser/Makefile	2005-03-05 17:27:21 UTC (rev 13829)
+++ branches/xmlbuildsystem/reactos/subsys/system/ibrowser/Makefile	2005-03-05 17:52:12 UTC (rev 13830)
@@ -12,7 +12,7 @@
 
 TARGET_NAME := ibrowser
 
-TARGET_INSTALLDIR := .
+TARGET_INSTALLDIR := system32
 
 TARGET_CFLAGS := \
 	-D__USE_W32API -DWIN32 -D_ROS_ \

Added: branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml
--- branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml	2005-03-05 17:27:21 UTC (rev 13829)
+++ branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml	2005-03-05 17:52:12 UTC (rev 13830)
@@ -0,0 +1,29 @@
+<module name="ibrowser" type="win32gui">
+	<linkerflag>-fexceptions</linkerflag>
+	<include base="ibrowser">.</include>
+	<define name="__USE_W32API" />
+	<define name="UNICODE" />
+	<define name="WIN32" />
+	<define name="_ROS_" />
+	<define name="_WIN32_IE">0x0600</define>
+	<define name="_WIN32_WINNT">0x0501</define>
+	<define name="WINVER">0x0500</define>
+	<library>uuid</library>
+	<library>kernel32</library>
+	<library>gdi32</library>
+	<library>comctl32</library>
+	<library>ole32</library>
+	<library>oleaut32</library>
+	<library>shell32</library>
+	<library>expat</library>
+	<directory name="utility">
+		<file>utility.cpp</file>
+		<file>window.cpp</file>
+		<file>xmlstorage.cpp</file>
+	</directory>
+	<file>ibrowser.cpp</file>
+	<file>favorites.cpp</file>
+	<file>mainframe.cpp</file>
+	<file>webchild.cpp</file>
+	<file>ibrowser.rc</file>
+</module>