Added FP 12 - 15 swfversion conditions Signed-off-by: Erik de Bruin <[email protected]>
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 <[email protected]> Authored: Fri Oct 24 13:42:30 2014 +0200 Committer: Erik de Bruin <[email protected]> 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>
