You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2012/05/17 09:21:40 UTC

[2/2] wp7 commit: debug + emulate scripts

debug + emulate scripts


Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/commit/9d38ecf9
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/tree/9d38ecf9
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/diff/9d38ecf9

Branch: refs/heads/master
Commit: 9d38ecf95aad8f5615f5591581a8463130a9d137
Parents: 4251cf3
Author: Jesse MacFadyen <pu...@gmail.com>
Authored: Wed May 16 23:53:03 2012 -0700
Committer: Jesse MacFadyen <pu...@gmail.com>
Committed: Wed May 16 23:53:03 2012 -0700

----------------------------------------------------------------------
 tooling/scripts/debug.bat   |   68 ++++++++++++++++++++++++++++++++++++++
 tooling/scripts/emulate.bat |   24 +++++++++++++
 2 files changed, 92 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/blob/9d38ecf9/tooling/scripts/debug.bat
----------------------------------------------------------------------
diff --git a/tooling/scripts/debug.bat b/tooling/scripts/debug.bat
new file mode 100644
index 0000000..4efc80c
--- /dev/null
+++ b/tooling/scripts/debug.bat
@@ -0,0 +1,68 @@
+
+@echo off
+goto start
+
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+:start
+
+
+if /i "%1"=="help" goto usage
+if /i "%1"=="-help" goto usage
+if /i "%1"=="--help" goto usage
+if /i "%1"=="/help" goto usage
+if /i "%1"=="/?" goto usage
+
+
+if defined VCINSTALLDIR goto start-msbuild
+if not defined VS100COMNTOOLS goto msbuild-missing
+if not exist "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat" goto msbuild-missing
+call "%VS100COMNTOOLS%\..\..\vc\vcvarsall.bat"
+if not defined VCINSTALLDIR goto msbuild-missing
+goto start-msbuild
+
+
+:builderror
+echo Error level 1
+goto exit
+
+:msbuild-missing
+echo Error! Cannot run msbuild from this command prompt.  Try running a VS Command prompt.
+goto exit
+
+
+:start-msbuild
+cd ..
+msbuild /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo /p:Configuration=Debug
+cd cordova
+if errorlevel 1 goto builderror
+goto deploy
+
+:usage
+echo "Usage: %0"
+echo "solution file is expected to be in the parent folder."
+goto exit
+
+:deploy
+CordovaDeploy ../Bin/Debug -d:1
+
+
+:exit
+
+

http://git-wip-us.apache.org/repos/asf/incubator-cordova-wp7/blob/9d38ecf9/tooling/scripts/emulate.bat
----------------------------------------------------------------------
diff --git a/tooling/scripts/emulate.bat b/tooling/scripts/emulate.bat
new file mode 100644
index 0000000..b3375fe
--- /dev/null
+++ b/tooling/scripts/emulate.bat
@@ -0,0 +1,24 @@
+
+@echo off
+goto start
+
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+
+
+:start
+CordovaDeploy ../Bin/Debug -d:1
\ No newline at end of file