我对 ANT 非常陌生,并且已经开始在 Flash Builder 项目中使用它。
当我运行编译器时,我需要传入一些库路径。整个事情看起来像这样:
<mxmlc
file="${SOURCE_DIR}/com/${PACKAGE_NAME}/Main.as"
output="${RELEASE_DIR}/assets/swf/${IDENTIFIER}/main.swf"
locale="${LOCALE}"
static-rsls="false"
accessible="true"
>
<compiler.debug>false</compiler.debug>
<load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
<source-path path-element="${SOURCE_DIR}"/>
<external-library-path file="${FLEX_HOME}/frameworks/libs/player/10.0/playerglobal.swc" append="true"/>
<library-path file="${FLEX_HOME}/frameworks/libs/flash-integration.swc" append="true"/>
<library-path file="${FLEX_HOME}/frameworks/libs/flex.swc" append="true"/>
<library-path file="${FLEX_HOME}/frameworks/libs/utilities.swc" append="true"/>
<library-path dir="${basedir}/libs" includes="*" append="true"/>
</mxmlc>
基本上 output= 部分之后的所有内容都可以以某种方式存储并用于所有其他编译。有什么方法可以在 ANT 中存储一大块 xml 并通过变量引用或其他方式调用它..?
谢谢!