mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-04 16:06:44 +02:00
19 lines
553 B
Batchfile
19 lines
553 B
Batchfile
:: Script to run unit test program
|
|
::
|
|
:: Usage:
|
|
::
|
|
:: .\runtests.bat x64\{Debug|Release}
|
|
::
|
|
|
|
:: Copy dependent DLLs to the named build directory
|
|
echo Copying DLLs
|
|
copy packages\libpng_native.redist.1.6.30\build\native\bin\x64\Debug\*.dll %1
|
|
copy packages\libpng_native.redist.1.6.30\build\native\bin\x64\Release\*.dll %1
|
|
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Debug\*.dll %1
|
|
copy packages\zlib_native.redist.1.2.11\build\native\bin\x64\Release\*.dll %1
|
|
|
|
:: Run unit test program
|
|
echo Running %1\testpdfio.exe
|
|
cd %1
|
|
testpdfio.exe
|