You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2015/06/22 15:40:28 UTC

[2/2] git commit: [flex-asjs] [refs/heads/develop] - add a batch file for jquery

add a batch file for jquery


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

Branch: refs/heads/develop
Commit: 01eccb2afcae90fab9ced1546762c71f5ad6cba4
Parents: a2d16b4
Author: Alex Harui <ah...@apache.org>
Authored: Mon Jun 22 14:32:13 2015 +0100
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Jun 22 14:32:13 2015 +0100

----------------------------------------------------------------------
 js/bin/jquery.bat | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/01eccb2a/js/bin/jquery.bat
----------------------------------------------------------------------
diff --git a/js/bin/jquery.bat b/js/bin/jquery.bat
new file mode 100644
index 0000000..ffe6bd3
--- /dev/null
+++ b/js/bin/jquery.bat
@@ -0,0 +1,29 @@
+@echo off
+
+rem
+rem Licensed to the Apache Software Foundation (ASF) under one or more
+rem contributor license agreements.  See the NOTICE file distributed with
+rem this work for additional information regarding copyright ownership.
+rem The ASF licenses this file to You under the Apache License, Version 2.0
+rem (the "License"); you may not use this file except in compliance with
+rem the License.  You may obtain a copy of the License at
+rem
+rem     http://www.apache.org/licenses/LICENSE-2.0
+rem
+rem Unless required by applicable law or agreed to in writing, software
+rem distributed under the License is distributed on an "AS IS" BASIS,
+rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+rem See the License for the specific language governing permissions and
+rem limitations under the License.
+rem
+
+rem
+rem mxmlc.bat script to launch falcon-mxmlc.jar in Windows Command Prompt.
+rem On OSX, Unix, or Cygwin, use the mxmlc shell script instead.
+rem
+
+if "x%FALCON_HOME%"=="x"  (set "FALCON_HOME=%~dp0..\..") else echo Using Falcon codebase: %FALCON_HOME%
+
+if "x%FLEX_HOME%"=="x" (set "FLEX_HOME=%~dp0..\..") else echo Using Flex SDK: %FLEX_HOME%
+
+@java -Dsun.io.useCanonCaches=false -Xms32m -Xmx512m -Dflexcompiler="%FALCON_HOME%" -Dflexlib="%FLEX_HOME%\frameworks" -jar "%FALCON_HOME%\js\lib\mxmlc.jar" -js-output-type=FLEXJS -external-library-path="%FLEX_HOME%\js\libs\js.swc" -external-library-path+="%FLEX_HOME%\js\libs\jquery.swc" %*
\ No newline at end of file