You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2014/10/31 17:49:18 UTC

[4/6] git commit: [flex-asjs] [refs/heads/develop] - Added FP 12 - 15 swfversion conditions

Added FP 12 - 15 swfversion conditions

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/97c1fd80
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/97c1fd80
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/97c1fd80

Branch: refs/heads/develop
Commit: 97c1fd8007d4b227ad88c4dda2a221e5c7b26103
Parents: f4eb38e
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Fri Oct 24 13:42:30 2014 +0200
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Fri Oct 31 17:02:00 2014 +0100

----------------------------------------------------------------------
 frameworks/as/build.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/97c1fd80/frameworks/as/build.xml
----------------------------------------------------------------------
diff --git a/frameworks/as/build.xml b/frameworks/as/build.xml
index 7573898..46e2145 100644
--- a/frameworks/as/build.xml
+++ b/frameworks/as/build.xml
@@ -190,6 +190,18 @@
 		<condition property="playerglobal.swfversion" value="22">
 			<equals arg1="${playerglobal.version}" arg2="11.9" />
 		</condition>
+		<condition property="playerglobal.swfversion" value="23">
+			<equals arg1="${playerglobal.version}" arg2="12.0" />
+		</condition>
+		<condition property="playerglobal.swfversion" value="24">
+			<equals arg1="${playerglobal.version}" arg2="13.0" />
+		</condition>
+		<condition property="playerglobal.swfversion" value="25">
+			<equals arg1="${playerglobal.version}" arg2="14.0" />
+		</condition>
+		<condition property="playerglobal.swfversion" value="26">
+			<equals arg1="${playerglobal.version}" arg2="15.0" />
+		</condition>
 	</target>	
 
 </project>