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 |