tlf instead of flex-tlf wouldn't cool ? I indicated tlf in the others doc,
as I indicated to clone the flex-sdk to sdk :)
-Fred
-----Message d'origine-----
From: aha...@apache.org
Sent: Thursday, March 21, 2013 11:07 PM
To: comm...@flex.apache.org
Subject: git commit: Fix SDK Build by calling external ant target in
flex-tlf
Updated Branches:
refs/heads/develop 839349413 -> b77d12d91
Fix SDK Build by calling external ant target in flex-tlf
Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/b77d12d9
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/b77d12d9
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/b77d12d9
Branch: refs/heads/develop
Commit: b77d12d918dad18d7ba8207e381f593843ffc872
Parents: 8393494
Author: Alex Harui <aha...@apache.org>
Authored: Thu Mar 21 15:03:59 2013 -0700
Committer: Alex Harui <aha...@apache.org>
Committed: Thu Mar 21 15:06:12 2013 -0700
----------------------------------------------------------------------
frameworks/projects/textLayout/build.xml | 20 +++++++++++++++++---
1 files changed, 17 insertions(+), 3 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/b77d12d9/frameworks/projects/textLayout/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/projects/textLayout/build.xml
b/frameworks/projects/textLayout/build.xml
index 9927296..a5dd159 100644
--- a/frameworks/projects/textLayout/build.xml
+++ b/frameworks/projects/textLayout/build.xml
@@ -30,6 +30,10 @@
<property name="flexTasks.location"
value="${FLEX_HOME}/lib/flexTasks.jar"/>
<property name="project.uri"
value="library://ns.adobe.com/flashx/textLayout"/>
+ <available file="${source.dir}"
+ type="dir"
+ property="src.folder.exists"/>
+
<!-- We use abbreviated token names here as, the 'release'
and 'debug' tokens conflict with those specified in
build.properties
@@ -94,7 +98,7 @@
</macrodef>
- <target name="main" depends="clean,compile" description="Clean build of
textLayout.swc">
+ <target name="main" depends="clean,compile,compile.external"
description="Clean build of textLayout.swc">
<bundle locale="${locale}"/>
</target>
@@ -151,7 +155,7 @@
<bundler locale="zh_TW"/><!-- Traditional Chinese resources -->
</target>
- <target name="clean" depends="bundles-clean" description="Deletes the
combined swc">
+ <target name="clean" depends="bundles-clean,clean-external"
description="Deletes the combined swc">
<delete failonerror="false">
<fileset dir="${basedir}">
<include name="bundles.properties"/>
@@ -173,7 +177,7 @@
</delete>
</target>
- <target name="compile" description="Compiles textLayout.swc">
+ <target name="compile" description="Compiles textLayout.swc"
if="src.folder.exists">
<taskdef resource="flexTasks.tasks" classpath="${flexTasks.location}"/>
<compc fork="true"
output="${output.file}">
@@ -187,6 +191,16 @@
</compc>
</target>
+ <target name="compile.external" description="Compile textLayout.swc in
flex-tlf repo" unless="src.folder.exists">
+ <ant dir="${FLEX_HOME}/../flex-tlf/" target="textLayout_flex"/>
+ <copy file="${FLEX_HOME}/../flex-tlf/bin/textLayout.swc"
toDir="${FLEX_HOME}/frameworks/libs" />
+ </target>
+
+ <target name="clean-external" description="clean in flex-tlf repo"
unless="src.folder.exists">
+ <echo message="cleaning flex-tlf" />
+ <ant dir="${FLEX_HOME}/../flex-tlf/" target="clean"/>
+ </target>
+
<target name="clean-temp-docs">
<delete dir="${FLEX_HOME}/tempDoc" failonerror="false"
includeEmptyDirs="true"/>
<delete file="${basedir}/bundles/en_US/packages.dita"
failonerror="false"/>