This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch feature/MXRoyale in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 5c035bb029cbf498bde2b6defbddb8e2d70b32a6 Author: Alex Harui <[email protected]> AuthorDate: Wed Apr 18 00:30:52 2018 -0700 add Jewel to build --- frameworks/build.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/frameworks/build.xml b/frameworks/build.xml index c0bb98c..384aca6 100644 --- a/frameworks/build.xml +++ b/frameworks/build.xml @@ -139,6 +139,8 @@ <antcall target="Express"/> <antcall target="RoyaleSite"/> <antcall target="MXRoyale"/> + <antcall target="Jewel"/> + <antcall target="JewelTheme"/> </target> <target name="fonts"> @@ -194,6 +196,8 @@ <ant dir="${basedir}/projects/TLF" target="clean"/> <ant dir="${basedir}/projects/RoyaleSite" target="clean"/> <ant dir="${basedir}/projects/MXRoyale" target="clean"/> + <ant dir="${basedir}/projects/Jewel" target="clean"/> + <ant dir="${basedir}/themes/JewelTheme" target="clean"/> <ant dir="${basedir}/fontsrc" target="clean"/> <!-- delete the FlashBuilder executable directories --> @@ -333,9 +337,15 @@ <target name="RoyaleSite" description="Clean build of RoyaleSite.swc"> <ant dir="${basedir}/projects/RoyaleSite"/> </target> - <target name="MXRoyale" description="Clean build of RoyaleSite.swc"> + <target name="MXRoyale" description="Clean build of MXRoyale.swc"> <ant dir="${basedir}/projects/MXRoyale"/> </target> + <target name="Jewel" description="Clean build of Jewel.swc"> + <ant dir="${basedir}/projects/Jewel"/> + </target> + <target name="JewelTheme" description="Clean build of JewelTheme.swc"> + <ant dir="${basedir}/themes/JewelTheme"/> + </target> <target name="create-config" depends="playerglobal-setswfversion" description="Copy the config template and inject version numbers"> <copy file="${basedir}/${configname}-config-template.xml" tofile="${basedir}/${configname}-config.xml" overwrite="true"> -- To stop receiving notification emails like this one, please contact [email protected].
