You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ah...@apache.org on 2018/09/21 00:28:26 UTC

[royale-asjs] branch develop updated (a4cd3eb -> 85153e2)

This is an automated email from the ASF dual-hosted git repository.

aharui pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git.


    from a4cd3eb  update some versions
     new 5eec007  oops
     new 85153e2  fix clean targets

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 frameworks/js/build.xml | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)


[royale-asjs] 01/02: oops

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 5eec007617556adcfe41a6df1c625b9296616f03
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Sep 20 17:22:54 2018 -0700

    oops
---
 frameworks/js/build.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/frameworks/js/build.xml b/frameworks/js/build.xml
index 4128f5d..81fb22d 100644
--- a/frameworks/js/build.xml
+++ b/frameworks/js/build.xml
@@ -266,15 +266,15 @@
         <ant dir="${basedir}/projects/IconsJS"/>
     </target>
 
-    <target name="Icons" description="Clean build of JewelJS.swc">
+    <target name="Jewel" description="Clean build of JewelJS.swc">
         <ant dir="${basedir}/projects/JewelJS"/>
     </target>
 
-    <target name="Icons" description="Clean build of MXRoyaleJS.swc">
+    <target name="MXRoyale" description="Clean build of MXRoyaleJS.swc">
         <ant dir="${basedir}/projects/MXRoyaleJS"/>
     </target>
 
-    <target name="Icons" description="Clean build of SparkRoyaleJS.swc">
+    <target name="SparkRoyale" description="Clean build of SparkRoyaleJS.swc">
         <ant dir="${basedir}/projects/SparkRoyaleJS"/>
     </target>
 


[royale-asjs] 02/02: fix clean targets

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aharui pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git

commit 85153e204050e7101ecadf6624204ec1c6f48e74
Author: Alex Harui <ah...@apache.org>
AuthorDate: Thu Sep 20 17:28:10 2018 -0700

    fix clean targets
---
 frameworks/js/build.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/frameworks/js/build.xml b/frameworks/js/build.xml
index 81fb22d..a00b9df 100644
--- a/frameworks/js/build.xml
+++ b/frameworks/js/build.xml
@@ -104,6 +104,8 @@
         <antcall target="Jewel"/>
         <antcall target="MXRoyale"/>
         <antcall target="SparkRoyale"/>
+        <antcall target="Ace"/>
+        <antcall target="RoyaleSite"/>
     </target>
     
     <target name="other.locales" description ="Builds resource SWCs for all locales">
@@ -157,6 +159,8 @@
         <ant dir="${basedir}/projects/JewelJS" target="clean"/>
         <ant dir="${basedir}/projects/MXRoyaleJS" target="clean"/>
         <ant dir="${basedir}/projects/SparkRoyaleJS" target="clean"/>
+        <ant dir="${basedir}/projects/AceJS" target="clean"/>
+        <ant dir="${basedir}/projects/RoyaleSiteJS" target="clean"/>
 
         <delete dir="${basedir}/libs"/>
         <delete dir="${basedir}/generated-sources"/>
@@ -277,5 +281,13 @@
     <target name="SparkRoyale" description="Clean build of SparkRoyaleJS.swc">
         <ant dir="${basedir}/projects/SparkRoyaleJS"/>
     </target>
+    
+    <target name="Ace" description="Clean build of AceJS.swc">
+        <ant dir="${basedir}/projects/AceJS"/>
+    </target>
+    
+    <target name="RoyaleSite" description="Clean build of RoyaleSiteJS.swc">
+        <ant dir="${basedir}/projects/RoyaleSiteJS"/>
+    </target>
 
 </project>