bdfa2d744aae5a6a2a9bafbdc89a4cce17772d80
[org.ibex.core.git] / src / org / xwt / plat / Win32.xml
1 <!-- Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL] -->
2
3 <project name="Win32" default="build">
4
5     <target name="build">
6         <property name="gcc-target" value="i686-pc-mingw32-"/>
7         <property name="linkflags" value="-Wl,--subsystem,windows -lcomdlg32"/>
8         <property name="binaryname" value="xwt.exe"/>
9         <property name="subplat" value="Win32"/>
10         <ant target="build" antfile="src/org/xwt/plat/GCJ.xml"/>
11     </target>
12                                                                          
13     <target name="run">
14         <echo message='launching .exe'/>
15         <exec dir='.' executable='/usr/bin/ssh'>
16             <arg value='${cygwin-host}'/>
17             <arg value='cd ${cygwin-path}; bin-Win32/xwt.exe src org.xwt.demo.main'/>
18         </exec>
19     </target>
20
21 </project>