Changeset 280 for trunk/fl5/build/build.xml
- Timestamp:
- 08/19/09 19:51:45 (4 years ago)
- File:
-
- 1 edited
-
trunk/fl5/build/build.xml (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/fl5/build/build.xml
r279 r280 77 77 <exec executable="${amxmlc.exe}" dir="${basedir}"> 78 78 <!-- Point to the main class .as file --> 79 <arg line="'${test.dir}/PlayerTest Launcher.as'" />79 <arg line="'${test.dir}/PlayerTest.mxml'" /> 80 80 81 81 <!-- Place the built .swf file in the "bin" directory --> … … 88 88 <!-- Include the necessary framework libraries in the class path --> 89 89 <arg line="-compiler.library-path '${flexsdk.lib.dir}'" /> 90 <arg line="-compiler.library-path '${airsdk.lib.dir}'" /> 90 91 <arg line="-compiler.library-path '${flexunit.lib.dir}'" /> 91 92 <arg line="-compiler.library-path '${lib.dir}'" /> … … 95 96 <arg line="-compiler.library-path '${flexsdk.locale.dir}'" /> 96 97 98 <!-- Enable incremental compilation --> 99 <arg line="-incremental=true" /> 100 97 101 <!-- Compile with network sandbox --> 98 102 <arg line="-use-network=true" /> … … 104 108 </target> 105 109 106 <target name="test-unit" depends="check-properties"> 110 <target name="test-unit-windowless" depends="check-properties,build-test"> 111 <antcall target="test-unit"> 112 <param name="windowless" value="true"/> 113 <param name="outputPath" value="${basedir}/bin-test/output.xml"/> 114 </antcall> 115 </target> 116 117 <target name="test-unit" depends="check-properties,build-test"> 118 <condition property="windowlessLine" value="-- windowless" else=""> 119 <isset property="windowless" /> 120 </condition> 121 <condition property="outputLine" value="-- 'outputpath=${outputPath}'" else=""> 122 <isset property="outputPath" /> 123 </condition> 107 124 <exec executable="${airDebugLauncher.exe}"> 108 125 <arg line="'${basedir}/bin-test/PlayerTestLauncher-app.xml'" /> 126 127 <!-- Enable windowless run --> 128 <arg line="${windowlessLine}" /> 129 130 <!-- Set output path --> 131 <arg line="${outputLine}" /> 109 132 </exec> 110 133 </target>
Note: See TracChangeset
for help on using the changeset viewer.
