2003/02/15 11:43:08
[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="javafiles" value="org/xwt/plat/Win32.java"/>
10         <property name="ccfiles" value="org/xwt/plat/Win32.cc"/>
11         <ant target="build" antfile="src/org/xwt/plat/GCJ.xml"/>
12     </target>
13                                                                          
14     <target name="run">
15         <echo message='launching .exe'/>
16         <exec dir='.' executable='/usr/bin/ssh'>
17             <arg value='${cygwin-host}'/>
18             <arg value='cd ${cygwin-path}; bin-Win32/xwt.exe src org.xwt.demo.main'/>
19         </exec>
20     </target>
21
22 </project>