reactos/rosapps/smartpdf/baseutils/test_win.bat
Klemens Friedl 435a566751 SmartPDF - lightweight pdf viewer app for rosapps
* sumatrapdf - vendor import
* everything compiles (libjpeg, poppler, fitz, sumatrapdf)
* does NOT link

(remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it)

svn path=/trunk/; revision=29295
2007-09-29 08:39:35 +00:00

24 lines
362 B
Batchfile

@echo off
pushd .
@call "C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\vsvars32.bat"
IF ERRORLEVEL 1 goto VC_SETUP_FAILED
nmake -f Makefile.vc8
IF ERRORLEVEL 1 goto COMPILATION_FAILED
del *.obj *.ilk
test_file_util_d.exe
goto END
:VC_SETUP_FAILED
echo Failed to setup vc8
goto END
:COMPILATION_FAILED
echo Compilation failed!
goto END
:END
popd