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 2019/12/12 06:30:28 UTC

[royale-asjs] branch develop updated (0872220 -> 6270e88)

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 0872220  fix MXTests
     new 150a07c  JSOnly configs won't have a bin-debug folder
     new 6270e88  JSOnly configs won't have a bin-debug folder but have to create the bin/js-debug folder first

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:
 examples/mxroyale/tourdeflexmodules/build.xml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)


[royale-asjs] 02/02: JSOnly configs won't have a bin-debug folder but have to create the bin/js-debug folder first

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 6270e882cb5b73fbec04729e563596b4ba431cf0
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Dec 11 22:30:03 2019 -0800

    JSOnly configs won't have a bin-debug folder but have to create the bin/js-debug folder first
---
 examples/mxroyale/tourdeflexmodules/build.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/examples/mxroyale/tourdeflexmodules/build.xml b/examples/mxroyale/tourdeflexmodules/build.xml
index 8ee0f7c..0b65f6a 100644
--- a/examples/mxroyale/tourdeflexmodules/build.xml
+++ b/examples/mxroyale/tourdeflexmodules/build.xml
@@ -90,6 +90,7 @@
          <attribute name="relmap"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
    			<mxmlc file="${basedir}/src/@{folder}@{example}.mxml" debug="${debug_flag}"
             	output="${basedir}/bin-debug/@{folder}@{example}.swf"
                 fork="true" failonerror="true">
@@ -111,6 +112,7 @@
         <attribute name="folder"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
             <mxmlc file="${basedir}/src/@{folder}@{example}.mxml" debug="${debug_flag}"
                 output="${basedir}/bin-debug/@{folder}@{example}.swf"
                 fork="true" failonerror="true">
@@ -133,6 +135,7 @@
     	 <attribute name="locales" default="en_US"/>
         
         <sequential>
+            <mkdir dir="${basedir}/bin/js-debug" />
    			<mxmlc file="${basedir}/src/@{example}.mxml"
             	output="${basedir}/src/@{example}.swf" fork="true" failonerror="true">
    				<locale>en_US</locale>


[royale-asjs] 01/02: JSOnly configs won't have a bin-debug folder

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 150a07c9f68a38d6c589d7e2507c4f01fb08d02e
Author: Alex Harui <ah...@apache.org>
AuthorDate: Wed Dec 11 22:17:46 2019 -0800

    JSOnly configs won't have a bin-debug folder
---
 examples/mxroyale/tourdeflexmodules/build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/mxroyale/tourdeflexmodules/build.xml b/examples/mxroyale/tourdeflexmodules/build.xml
index 751ac71..8ee0f7c 100644
--- a/examples/mxroyale/tourdeflexmodules/build.xml
+++ b/examples/mxroyale/tourdeflexmodules/build.xml
@@ -95,7 +95,7 @@
                 fork="true" failonerror="true">
 				<load-config filename="${ROYALE_HOME}/frameworks/flex-config.xml"/>
                 <arg value="-module-output=@{folder}" />
-                <arg value="-load-externs=${basedir}/bin-debug/link_report-js.xml" />
+                <arg value="-load-externs=${basedir}/bin/js-debug/link_report-js.xml" />
                 <arg value="-js-compiler-option=--variable_map_input_file @{relmap}gcc_variablemap.txt" />
                 <arg value="-js-compiler-option+=--property_map_input_file @{relmap}gcc_propertymap.txt" />
                 <arg value="-js-compiler-option+=--externs ${basedir}/bin/js-debug/externs_report.js" />
@@ -120,7 +120,7 @@
                 <arg value="-js-compiler-option+=--property_map_output_file gcc_propertymap.txt" />
                 <arg value="-externs-report=${basedir}/bin/js-debug/externs_report.js" />
                 <!-- the JSROYALE compilation will produce a file called link_report-js.xml -->
-                <arg value="-link-report=${basedir}/bin-debug/link_report.xml" />
+                <arg value="-link-report=${basedir}/bin/js-debug/link_report.xml" />
                 <arg value="+playerglobal.version=${playerglobal.version}" />
                 <arg value="+env.AIR_HOME=${env.AIR_HOME}" />
                 <arg value="+env.PLAYERGLOBAL_HOME=${env.PLAYERGLOBAL_HOME}" />