Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: createsolution.bat

Issue 10234088: Use GYP to generate MSVS project files (Closed)
Patch Set: Moved project files to build/ Created April 24, 2013, 1:57 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « convert_js.py ('k') | libadblockplus.gyp » ('j') | msvs_gyp_wrapper.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: createsolution.bat
===================================================================
new file mode 100644
--- /dev/null
+++ b/createsolution.bat
@@ -0,0 +1,15 @@
+@echo off
+
+if %1.==. goto NoArch
+
+pushd %~dp0
+mkdir build
+mkdir build\shell
+python msvs_gyp_wrapper.py --depth=. -f msvs -I common.gypi --generator-output=build -Dtarget_arch=%1 libadblockplus.gyp
+goto End
+
+:NoArch
+ echo Please add a command line parameter specifying target architecture (ia32 or x64)
+ goto End
+
+:End
« no previous file with comments | « convert_js.py ('k') | libadblockplus.gyp » ('j') | msvs_gyp_wrapper.py » ('J')

Powered by Google App Engine
This is Rietveld