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/28 16:05:19 UTC

[royale-asjs] branch develop updated: use same ant vars as other swcs

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


The following commit(s) were added to refs/heads/develop by this push:
     new fb9b353  use same ant vars as other swcs
fb9b353 is described below

commit fb9b3538114d40fc18da0575ee28c8918b35c934
Author: Alex Harui <ah...@apache.org>
AuthorDate: Fri Sep 28 09:04:56 2018 -0700

    use same ant vars as other swcs
---
 frameworks/projects/Testing/build.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/frameworks/projects/Testing/build.xml b/frameworks/projects/Testing/build.xml
index e0361c4..0b2e7d0 100644
--- a/frameworks/projects/Testing/build.xml
+++ b/frameworks/projects/Testing/build.xml
@@ -62,8 +62,9 @@
     
     <target name="compile-js">
         <ant dir="${ROYALE_HOME}/frameworks/js/projects/${ant.project.name}JS/" inheritAll="false" >
+            <property name="ROYALE_SWF_COMPILER_HOME" value="${ROYALE_SWF_COMPILER_HOME}"/>
             <property name="ROYALE_COMPILER_HOME" value="${ROYALE_COMPILER_HOME}"/>
-            <property name="FLEX_HOME" value="${FLEX_HOME}"/>
+            <property name="ROYALE_HOME" value="${ROYALE_HOME}"/>
         </ant>
     </target>
     
@@ -103,7 +104,8 @@
     
     <target name="compile" description="Compiles .as files into .swc" if="env.AIR_HOME">
         <echo message="Compiling libs/${ant.project.name}.swc"/>
-        <echo message="FLEX_HOME: ${FLEX_HOME}"/>
+        <echo message="ROYALE_HOME: ${ROYALE_HOME}"/>
+        <echo message="ROYALE_SWF_COMPILER_HOME: ${ROYALE_SWF_COMPILER_HOME}"/>
         <echo message="ROYALE_COMPILER_HOME: ${ROYALE_COMPILER_HOME}"/>
         <echo message="FLEXUNIT_HOME: ${FLEXUNIT_HOME}"/>