You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cf...@apache.org on 2012/12/18 22:26:51 UTC

svn commit: r1423670 - /incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml

Author: cframpton
Date: Tue Dec 18 21:26:50 2012
New Revision: 1423670

URL: http://svn.apache.org/viewvc?rev=1423670&view=rev
Log:
Break compile into pixelbender-compile and swc-compile so I can call swc-compile when doing development.

Modified:
    incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml

Modified: incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml?rev=1423670&r1=1423669&r2=1423670&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml (original)
+++ incubator/flex/sdk/branches/develop/frameworks/projects/spark/build.xml Tue Dec 18 21:26:50 2012
@@ -174,6 +174,8 @@
         </delete>
     </target>
 
+    <target name="compile" depends="pixelbender-compile, swc-compile" description="Compiles spark.swc"/>
+    
     <target name="pixelbender-compile">
         <exec executable="${env.PIXELBENDER_HOME}/pbutil">
             <arg value="${FLEX_HOME}/frameworks/projects/spark/asdoc/en_US/spark/effects/examples/assets/twist.pbk" />
@@ -200,13 +202,12 @@
             <arg value="${FLEX_HOME}/frameworks/projects/spark/src/spark/effects/WipeRight.pbj" />
         </exec>
     </target>
-
     
     <target name="prepare" description="Copies manifests to project directories so the IDE can find them">
         <copy file="${FLEX_HOME}/frameworks/spark-manifest.xml" tofile="${basedir}/manifest.xml" overwrite="true"/>
     </target>
     
-    <target name="compile" depends="prepare, pixelbender-compile" description="Compiles spark.swc">
+    <target name="swc-compile" depends="prepare" description="Compiles spark.swc">
         <echo message="Compiling frameworks/libs/spark.swc"/>
 
         <!-- Load the <compc> task. We can't do this at the <project> level -->