aboutsummaryrefslogtreecommitdiff
path: root/buildall.bat
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-05-05 13:41:34 +0000
committermarha <marha@users.sourceforge.net>2011-05-05 13:41:34 +0000
commitf6e7c58cd7007814e8890932ff74879e0750459b (patch)
tree9586b0b37e5f93a1a8e7155539e4d3c6679ac579 /buildall.bat
parent092ee086db2b206b1959247e01cf43daf565d6c1 (diff)
downloadvcxsrv-f6e7c58cd7007814e8890932ff74879e0750459b.tar.gz
vcxsrv-f6e7c58cd7007814e8890932ff74879e0750459b.tar.bz2
vcxsrv-f6e7c58cd7007814e8890932ff74879e0750459b.zip
Print an error message if nasm is not found
Diffstat (limited to 'buildall.bat')
-rw-r--r--buildall.bat10
1 files changed, 10 insertions, 0 deletions
diff --git a/buildall.bat b/buildall.bat
index fab8af048..6d28e02c9 100644
--- a/buildall.bat
+++ b/buildall.bat
@@ -1,4 +1,8 @@
+nasm >& nul
+if errorlevel NE 0 goto nasmerror
+
echo on
+
devenv.com freetype\freetypevc10.sln /build "Release Multithreaded|Win32"
devenv.com freetype\freetypevc10.sln /build "Debug Multithreaded|Win32"
cd openssl
@@ -20,3 +24,9 @@ tools\mhmake\release\mhmake.exe -C xorg-server MAKESERVER=1
cd xorg-server\installer
call packageall.bat
+
+goto end
+
+:nasmerror
+echo Please put nasm in the path
+:end \ No newline at end of file