Changeset 4965
- Timestamp:
- 06/28/08 16:15:39 (5 months ago)
- Files:
-
- 1 modified
-
trunk/build/build.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/build/build.xml
r4925 r4965 22 22 See build.properties to define path where your gwt installation is located. 23 23 You must unpack platform specific binaries under linux, windows and mac directories. 24 ${gwt-dir}/${platform} (linux|windows|mac ) are used for24 ${gwt-dir}/${platform} (linux|windows|mac|mac_leopard) are used for 25 25 a) compile WebContent/ITMILL/widgetsets 26 26 b) creating platform specific release ZIP/TGZ packages. … … 103 103 <equals arg1="${os.name}" arg2="Mac OS X" /> 104 104 <then> 105 <property name="platform" value="mac" /> 105 <if> 106 <contains string="${os.version}" substring="10.5." /> 107 <then> 108 <property name="platform" value="mac_leopard" /> 109 </then> 110 <else> 111 <property name="platform" value="mac" /> 112 </else> 113 </if> 106 114 </then> 107 115 </if> … … 124 132 <property name="lib-gwt-dev" value="gwt-dev-${platform}.jar" /> 125 133 126 <echo>We are on ${platform} platform , using ${gwt-dir}/${platform}/${lib-gwt-dev}.</echo>134 <echo>We are on ${platform} platform (${os.name} ${os.version}), using ${gwt-dir}/${platform}/${lib-gwt-dev}.</echo> 127 135 128 136 <!-- Destination files -->
