diff options
-rw-r--r-- | Readme-mod.txt | 2 | ||||
-rw-r--r-- | build/make_zip.bat | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Readme-mod.txt b/Readme-mod.txt index 1567281..ff27ff2 100644 --- a/Readme-mod.txt +++ b/Readme-mod.txt @@ -32,5 +32,5 @@ Ctrl+Shift+Enter New line with toggled auto indent option. Notepad2-mod 4.2.25 has been created with Scintilla 3.0.2. The unused
lexers are commented out in "scintilla/src/Catalogue.cxx" (see lexlink.js).
-You can use WDK 7.1, MSVC 2010 or Intel Parallel Composer 2011 Update 5
+You can use WDK 7.1, MSVC 2010 or Intel Parallel Composer 2011 SP1 Update 8
to build Notepad2-mod.
diff --git a/build/make_zip.bat b/build/make_zip.bat index 57ae02e..7582bbd 100644 --- a/build/make_zip.bat +++ b/build/make_zip.bat @@ -8,7 +8,7 @@ rem * Batch file for creating the zip packages rem *
rem * See License.txt for details about distribution and modification.
rem *
-rem * (c) XhmikosR 2010-2011
+rem * (c) XhmikosR 2010-2012
rem * http://code.google.com/p/notepad2-mod/
rem *
rem ******************************************************************************
@@ -114,6 +114,9 @@ IF "%~1" == "" ( :START
SET "TEMP_NAME=temp_zip%SUFFIX%"
+IF NOT EXIST "..\%INPUTDIRx86%\Notepad2.exe" CALL :SUBMSG "ERROR" "Compile Notepad2 x86 first!"
+IF NOT EXIST "..\%INPUTDIRx64%\Notepad2.exe" CALL :SUBMSG "ERROR" "Compile Notepad2 x64 first!"
+
CALL :SubGetVersion
CALL :SubZipFiles %INPUTDIRx86% x86-32
CALL :SubZipFiles %INPUTDIRx64% x86-64
|