Import some files that allow to build a correct libnfc's DLL on Windows platform. (Thanks to Roger Brown from Snapper)

This commit is contained in:
Romuald Conty 2010-05-28 09:48:15 +00:00
parent 07a779c880
commit b05ab6285d
19 changed files with 1505 additions and 0 deletions

15
windows/mm/make.bat Normal file
View file

@ -0,0 +1,15 @@
set OLDPATH=%PATH%
set PATH=%PATH%;"c:\program files\makemsi"
rmdir /s /q out
call "%ProgramFiles%\MakeMSI\mm.cmd" "libnfc.mm"
if errorlevel 1 goto failed
:success
echo success
goto doneall
:failed
echo failed
:doneall
set PATH=%OLDPATH%