delphimvcframework/build.xml
daniele.teti 9f8d265fb7 + added freepascal support (Many Thanks to Daniel Gaspary)
+ now in Delphi you can user INDY or Synapse
+ added synapse as svn:external
+ TStompClient.Receive(ATimeout: Integer): IStompFrame; REALLY NEED REFACTORY
2010-04-13 10:39:09 +00:00

21 lines
1.0 KiB
XML

<project name="MyProject" default="compile" basedir=".">
<target name="compile" description="Compiling..." >
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
<arg value="examples\GlobalDemo\GlobalDemo\GlobalDemo.dproj"/>
<arg value="/nologo"/>
<arg value="/t:rebuild"/>
<arg value="/p:config=Release"/>
</exec>
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
<arg value="examples\Chat\ChatClient\ChatClient.dproj"/>
</exec>
<exec dir="." failonerror="true" searchpath="true" executable="msbuild.exe">
<arg value="unittest\TestStompClient.dproj"/>
</exec>
<exec dir="." failonerror="true" searchpath="true" executable="unittest\TestStompClient.exe">
</exec>
<exec dir="." failonerror="true" searchpath="true" command="C:\tools\pasdoc\pasdoc.exe --output docs --name DelphiMSBuild2 --write-uses-list -S pasdocfiles.txt">
</exec>
</target>
</project>