add <pch> to existing xml files that support pch on trunk
Modified: branches/xmlbuildsystem/reactos/drivers/lib/ip/ip.xml
Modified: branches/xmlbuildsystem/reactos/drivers/net/afd/afd.xml
Modified: branches/xmlbuildsystem/reactos/drivers/net/ndis/ndis.xml
Modified: branches/xmlbuildsystem/reactos/drivers/net/tcpip/tcpip.xml
Modified: branches/xmlbuildsystem/reactos/lib/advapi32/advapi32.xml
Modified: branches/xmlbuildsystem/reactos/lib/crt/crt.xml
Modified: branches/xmlbuildsystem/reactos/lib/crtdll/crtdll.xml
Modified: branches/xmlbuildsystem/reactos/lib/gdi32/gdi32.xml
Modified: branches/xmlbuildsystem/reactos/lib/kernel32/kernel32.xml
Modified: branches/xmlbuildsystem/reactos/lib/msvcrt/msvcrt.xml
Modified: branches/xmlbuildsystem/reactos/lib/psapi/psapi.xml
Modified: branches/xmlbuildsystem/reactos/lib/user32/user32.xml
Modified: branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
Modified: branches/xmlbuildsystem/reactos/lib/ws2_32/ws2_32.xml
Modified: branches/xmlbuildsystem/reactos/subsys/system/cmd/cmd.xml
Modified:
branches/xmlbuildsystem/reactos/subsys/system/explorer/explorer.xml
Modified:
branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml
Modified:
branches/xmlbuildsystem/reactos/subsys/system/taskmgr/taskmgr.xml
Modified:
branches/xmlbuildsystem/reactos/subsys/system/usetup/usetup.xml
Modified: branches/xmlbuildsystem/reactos/subsys/win32k/win32k.xml
_____
Modified: branches/xmlbuildsystem/reactos/drivers/lib/ip/ip.xml
--- branches/xmlbuildsystem/reactos/drivers/lib/ip/ip.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/drivers/lib/ip/ip.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -4,6 +4,9 @@
<define name="__USE_W32API"/>
<include>drivers/net/tcpip/include</include>
<include>drivers/lib/oskittcp/include</include>
+ <directory name="include">
+ <pch>precomp.h</pch>
+ </directory>
<directory name="network">
<if property="ARCH" value="i386">
<directory name="i386">
_____
Modified: branches/xmlbuildsystem/reactos/drivers/net/afd/afd.xml
--- branches/xmlbuildsystem/reactos/drivers/net/afd/afd.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/drivers/net/afd/afd.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -5,6 +5,9 @@
<library>ntoskrnl</library>
<library>hal</library>
<library>pseh</library>
+ <directory name="include">
+ <pch>afd.h</pch>
+ </directory>
<directory name="afd">
<file>bind.c</file>
<file>connect.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/drivers/net/ndis/ndis.xml
--- branches/xmlbuildsystem/reactos/drivers/net/ndis/ndis.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/drivers/net/ndis/ndis.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -8,6 +8,9 @@
<define name="__USE_W32API" />
<library>ntoskrnl</library>
<library>hal</library>
+ <directory name="include">
+ <pch>ndissys.h</pch>
+ </directory>
<directory name="ndis">
<file>40gone.c</file>
<file>50gone.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/drivers/net/tcpip/tcpip.xml
--- branches/xmlbuildsystem/reactos/drivers/net/tcpip/tcpip.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/drivers/net/tcpip/tcpip.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -12,6 +12,9 @@
<library>pseh</library>
<library>ntoskrnl</library>
<library>hal</library>
+ <directory name="include">
+ <pch>precomp.h</pch>
+ </directory>
<directory name="datalink">
<file>lan.c</file>
</directory>
_____
Modified: branches/xmlbuildsystem/reactos/lib/advapi32/advapi32.xml
--- branches/xmlbuildsystem/reactos/lib/advapi32/advapi32.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/advapi32/advapi32.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -7,6 +7,7 @@
<define name="_WIN32_WINNT">0x0501</define>
<library>ntdll</library>
<library>kernel32</library>
+ <pch>advapi32.h</pch>
<directory name="crypt">
<file>crypt.c</file>
<file>crypt_des.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/crt/crt.xml
--- branches/xmlbuildsystem/reactos/lib/crt/crt.xml 2005-03-10
16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/crt/crt.xml 2005-03-10
16:50:29 UTC (rev 13913)
@@ -11,6 +11,7 @@
<define name="_MSVCRT_LIB_" />
<define name="_MSVCRT_" />
<define name="_MT" />
+ <pch>precomp.h</pch>
<directory name="conio">
<file>cgets.c</file>
<file>cprintf.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/crtdll/crtdll.xml
--- branches/xmlbuildsystem/reactos/lib/crtdll/crtdll.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/crtdll/crtdll.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -15,6 +15,7 @@
<library>string</library>
<library>kernel32</library>
<library>ntdll</library>
+ <pch>precomp.h</pch>
<file>dllmain.c</file>
<file>crtdll.rc</file>
</module>
_____
Modified: branches/xmlbuildsystem/reactos/lib/gdi32/gdi32.xml
--- branches/xmlbuildsystem/reactos/lib/gdi32/gdi32.xml 2005-03-10
16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/gdi32/gdi32.xml 2005-03-10
16:50:29 UTC (rev 13913)
@@ -10,6 +10,9 @@
<library>rosrtl</library>
<library>kernel32</library>
<library>advapi32</library>
+ <directory name="include">
+ <pch>precomp.h</pch>
+ </directory>
<directory name="main">
<file>dllmain.c</file>
</directory>
_____
Modified: branches/xmlbuildsystem/reactos/lib/kernel32/kernel32.xml
--- branches/xmlbuildsystem/reactos/lib/kernel32/kernel32.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/kernel32/kernel32.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -11,6 +11,7 @@
<linkerflag>-lgcc</linkerflag>
<linkerflag>-nostartfiles</linkerflag>
<linkerflag>-nostdlib</linkerflag>
+ <pch>k32.h</pch>
<directory name="debug">
<file>break.c</file>
<file>debugger.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/msvcrt/msvcrt.xml
--- branches/xmlbuildsystem/reactos/lib/msvcrt/msvcrt.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/msvcrt/msvcrt.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -18,6 +18,7 @@
<library>string</library>
<library>kernel32</library>
<library>ntdll</library>
+ <pch>precomp.h</pch>
<file>dllmain.c</file>
<file>msvcrt.rc</file>
</module>
_____
Modified: branches/xmlbuildsystem/reactos/lib/psapi/psapi.xml
--- branches/xmlbuildsystem/reactos/lib/psapi/psapi.xml 2005-03-10
16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/psapi/psapi.xml 2005-03-10
16:50:29 UTC (rev 13913)
@@ -7,6 +7,7 @@
<library>pseh</library>
<library>ntdll</library>
<library>kernel32</library>
+ <pch>precomp.h</pch>
<file>malloc.c</file>
<file>psapi.c</file>
<file>psapi.rc</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/user32/user32.xml
--- branches/xmlbuildsystem/reactos/lib/user32/user32.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/user32/user32.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -14,6 +14,9 @@
<library>rosrtl</library>
<library>kernel32</library>
<library>advapi32</library>
+ <directory name="include">
+ <pch>user32.h</pch>
+ </directory>
<directory name="controls">
<file>button.c</file>
<file>combo.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
--- branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -9,6 +9,7 @@
<library>kernel32</library>
<library>advapi32</library>
<library>user32</library>
+ <pch>precomp.h</pch>
<file>desktop.c</file>
<file>directory.c</file>
<file>environment.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/lib/ws2_32/ws2_32.xml
--- branches/xmlbuildsystem/reactos/lib/ws2_32/ws2_32.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/lib/ws2_32/ws2_32.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -11,6 +11,9 @@
<library>user32</library>
<library>advapi32</library>
<library>dnsapi</library>
+ <directory name="include">
+ <pch>ws2_32.h</pch>
+ </directory>
<directory name="misc">
<file>bsd.c</file>
<file>catalog.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/subsys/system/cmd/cmd.xml
--- branches/xmlbuildsystem/reactos/subsys/system/cmd/cmd.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/system/cmd/cmd.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -5,6 +5,7 @@
<define name="ANONYMOUSUNIONS" />
<define name="_WIN32_WINNT">0x0501</define>
<library>kernel32</library>
+ <pch>precomp.h</pch>
<file>alias.c</file>
<file>attrib.c</file>
<file>batch.c</file>
_____
Modified:
branches/xmlbuildsystem/reactos/subsys/system/explorer/explorer.xml
--- branches/xmlbuildsystem/reactos/subsys/system/explorer/explorer.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/system/explorer/explorer.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -21,6 +21,7 @@
<library>shell32</library>
<library>expat</library>
<library>notifyhook</library>
+ <pch>precomp.h</pch>
<directory name="desktop">
<file>desktop.cpp</file>
</directory>
_____
Modified:
branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml
--- branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/system/ibrowser/ibrowser.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -17,6 +17,7 @@
<library>oleaut32</library>
<library>shell32</library>
<library>expat</library>
+ <pch>precomp.h</pch>
<directory name="utility">
<file>utility.cpp</file>
<file>window.cpp</file>
_____
Modified:
branches/xmlbuildsystem/reactos/subsys/system/taskmgr/taskmgr.xml
--- branches/xmlbuildsystem/reactos/subsys/system/taskmgr/taskmgr.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/system/taskmgr/taskmgr.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -8,6 +8,7 @@
<library>user32</library>
<library>gdi32</library>
<library>comctl32</library>
+ <pch>precomp.h</pch>
<file>about.c</file>
<file>affinity.c</file>
<file>applpage.c</file>
_____
Modified:
branches/xmlbuildsystem/reactos/subsys/system/usetup/usetup.xml
--- branches/xmlbuildsystem/reactos/subsys/system/usetup/usetup.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/system/usetup/usetup.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -7,6 +7,7 @@
<library>zlib</library>
<library>vfatlib</library>
<library>ntdll</library>
+ <pch>precomp.h</pch>
<file>bootsup.c</file>
<file>cabinet.c</file>
<file>console.c</file>
_____
Modified: branches/xmlbuildsystem/reactos/subsys/win32k/win32k.xml
--- branches/xmlbuildsystem/reactos/subsys/win32k/win32k.xml
2005-03-10 16:43:31 UTC (rev 13912)
+++ branches/xmlbuildsystem/reactos/subsys/win32k/win32k.xml
2005-03-10 16:50:29 UTC (rev 13913)
@@ -14,6 +14,7 @@
<library>hal</library>
<library>pseh</library>
<library>freetype</library>
+ <pch>w32k.h</pch>
<directory name="dib">
<file>dib1bpp.c</file>
<file>dib4bpp.c</file>
Show replies by date