Skip to content

Commit b0ef9c4

Browse files
committed
order matters when you compile the flash integration
1 parent e928537 commit b0ef9c4

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

frameworks/build.xml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@
108108
Should consider updating the OSMF and TLF versions in use.
109109
-->
110110

111-
<target name="compile" description="Builds all SWCs but not their resource bundles" depends="flex-config,flash-integration.compile">
111+
<target name="compile" description="Builds all SWCs but not their resource bundles" depends="flex-config,all.compile,flash-integration.compile,automation.compile" />
112+
113+
<target name="all.compile">
112114
<antcall target="framework"/>
113115
<antcall target="mx"/>
114116
<antcall target="textLayout"/>
@@ -119,9 +121,9 @@
119121
<antcall target="sparkskins"/>
120122
<antcall target="spark_dmv"/>
121123
<antcall target="airframework"/>
122-
<antcall target="airspark"/>
123-
<antcall target="mobilecomponents"/>
124-
<antcall target="mobiletheme"/>
124+
<antcall target="airspark"/>
125+
<antcall target="mobilecomponents"/>
126+
<antcall target="mobiletheme"/>
125127
<antcall target="core"/>
126128
<antcall target="authoringsupport"/>
127129
<antcall target="halo"/>
@@ -130,13 +132,16 @@
130132
<antcall target="apache"/>
131133
<antcall target="experimental"/>
132134
<antcall target="experimental_mobile"/>
133-
<antcall target="compile-automation"/>
134135
<antcall target="flatspark"/>
135136
</target>
136137

137138
<target name="flash-integration.compile" unless="isLinux">
138139
<antcall target="flash_integration" />
139140
</target>
141+
142+
<target name="automation.compile">
143+
<antcall target="compile-automation"/>
144+
</target>
140145

141146
<target name="test" description="Runs the tests for all projects that have FlexUnit tests">
142147
<delete dir="${FLEX_HOME}/test-reports"/>

0 commit comments

Comments
 (0)