X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=project%2Fcreate-installer.cmd;h=49e4fdae3f150295fd35ff3b5cbc7bf4bc70de79;hb=4d760b54bdb48f04c4d5cfb265bea960493d0a6b;hp=369e40842acaf3eaae6f19024fcb0be926d852f7;hpb=f00ff009cfc5dfefdf09ca241b9560e74575b3f5;p=deb_libcec.git diff --git a/project/create-installer.cmd b/project/create-installer.cmd index 369e408..49e4fda 100644 --- a/project/create-installer.cmd +++ b/project/create-installer.cmd @@ -1,42 +1,50 @@ @echo off +rem Check for NSIS IF EXIST "%ProgramFiles%\NSIS\makensis.exe" ( set NSIS="%ProgramFiles%\NSIS\makensis.exe" ) ELSE IF EXIST "%ProgramFiles(x86)%\NSIS\makensis.exe" ( set NSIS="%ProgramFiles(x86)%\NSIS\makensis.exe" ) ELSE GOTO NONSIS +rem Check for the Windows DDK IF NOT EXIST "C:\WinDDK\7600.16385.1" GOTO NODDK set DDK="C:\WinDDK\7600.16385.1" +rem Check for VC10 IF "%VS100COMNTOOLS%"=="" ( set COMPILER10="%ProgramFiles%\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe" ) ELSE IF EXIST "%VS100COMNTOOLS%\..\IDE\VCExpress.exe" ( set COMPILER10="%VS100COMNTOOLS%\..\IDE\VCExpress.exe" ) ELSE IF EXIST "%VS100COMNTOOLS%\..\IDE\devenv.exe" ( set COMPILER10="%VS100COMNTOOLS%\..\IDE\devenv.exe" -) +) ELSE GOTO NOSDK10 -echo Cleaning libCEC -%COMPILER10% libcec.sln /clean "Release|Win32" -echo Compiling libCEC -%COMPILER10% libcec.sln /build "Release|Win32" /project libcec -echo Compiling cec-client -%COMPILER10% libcec.sln /build "Release|Win32" /project testclient -echo Compiling LibCecSharp -%COMPILER10% libcec.sln /build "Release|Win32" /project LibCecSharp +del /s /f /q ..\build +mkdir ..\build +mkdir ..\build\x64 + +rem Skip to libCEC/x86 when we're running on win32 +if "%PROCESSOR_ARCHITECTURE%"=="x86" if "%PROCESSOR_ARCHITEW6432%"=="" goto libcecx86 -IF EXIST "%ProgramFiles(x86)%" ( -echo Cleaning libCEC x64 +rem Compile libCEC and cec-client x64 +echo. Cleaning libCEC (x64) %COMPILER10% libcec.sln /clean "Release|x64" -echo Compiling libCEC x64 +echo. Compiling libCEC (x64) %COMPILER10% libcec.sln /build "Release|x64" /project libcec -echo Compiling cec-client x64 +echo. Compiling cec-client (x64) %COMPILER10% libcec.sln /build "Release|x64" /project testclient -echo Compiling LibCecSharp x64 -%COMPILER10% libcec.sln /build "Release|x64" /project LibCecSharp -) +:libcecx86 +rem Compile libCEC and cec-client Win32 +echo. Cleaning libCEC (x86) +%COMPILER10% libcec.sln /clean "Release|Win32" +echo. Compiling libCEC (x86) +%COMPILER10% libcec.sln /build "Release|Win32" /project libcec +echo. Compiling cec-client (x86) +%COMPILER10% libcec.sln /build "Release|Win32" /project testclient + +rem Check for VC9 IF "%VS90COMNTOOLS%"=="" ( set COMPILER9="%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\VCExpress.exe" ) ELSE IF EXIST "%VS90COMNTOOLS%\..\IDE\VCExpress.exe" ( @@ -45,35 +53,59 @@ IF "%VS90COMNTOOLS%"=="" ( set COMPILER9="%VS90COMNTOOLS%\..\IDE\devenv.exe" ) ELSE GOTO NOSDK9 -echo Cleaning LibCecSharp.Net2 -%COMPILER9% LibCecSharp.Net2.sln /clean "Release|Win32" -echo Compiling LibCecSharp.Net2 -%COMPILER9% LibCecSharp.Net2.sln /build "Release|Win32" +rem Skip to libCEC/x86 when we're running on win32 +if "%PROCESSOR_ARCHITECTURE%"=="x86" if "%PROCESSOR_ARCHITEW6432%"=="" goto libcecsharpx86 -IF EXIST "%ProgramFiles(x86)%" ( -echo Cleaning LibCecSharp.Net2 x64 +rem Compile LibCecSharp (x64) +echo. Cleaning LibCecSharp (x64) %COMPILER9% LibCecSharp.Net2.sln /clean "Release|x64" -echo Compiling LibCecSharp.Net2 x64 -%COMPILER9% LibCecSharp.Net2.sln /build "Release|x64" -) +echo. Compiling LibCecSharp (x64) +%COMPILER9% LibCecSharp.sln /build "Release|x64" /project LibCecSharp +%COMPILER9% LibCecSharp.sln /build "Release|x64" /project CecSharpTester + +copy ..\build\LibCecSharp.dll ..\build\x64\LibCecSharp.dll +copy ..\build\CecSharpTester.exe ..\build\x64\CecSharpTester.exe + +:libcecsharpx86 +rem Compile LibCecSharp (x86) +echo. Cleaning LibCecSharp (x86) +%COMPILER9% LibCecSharp.sln /clean "Release|x86" +echo. Compiling LibCecSharp (x86) +%COMPILER9% LibCecSharp.sln /build "Release|x86" /project LibCecSharp +%COMPILER9% LibCecSharp.sln /build "Release|x86" /project CecSharpTester :NOSDK9 -echo Copying driver installer -copy "%DDK%\redist\DIFx\dpinst\MultiLin\amd64\dpinst.exe" ..\dpinst-amd64.exe -copy "%DDK%\redist\DIFx\dpinst\MultiLin\x86\dpinst.exe" ..\dpinst-x86.exe +:CREATEINSTALLER +echo. Copying driver installer +copy "%DDK%\redist\DIFx\dpinst\MultiLin\amd64\dpinst.exe" ..\build\dpinst-amd64.exe +copy "%DDK%\redist\DIFx\dpinst\MultiLin\x86\dpinst.exe" ..\build\dpinst-x86.exe -echo Creating the installer +rem Clean things up before creating the installer +del ..\build\LibCecSharp.pdb +del ..\build\CecSharpTester.pdb +copy ..\build\cec-client.x64.exe ..\build\x64\cec-client.x64.exe +del ..\build\cec-client.x64.exe +copy ..\build\libcec.x64.dll ..\build\x64\libcec.x64.dll +del ..\build\libcec.x64.dll +copy ..\build\libcec.x64.lib ..\build\x64\libcec.x64.lib +del ..\build\libcec.x64.lib + +echo. Creating the installer %NSIS% /V1 /X"SetCompressor /FINAL lzma" "libCEC.nsi" -echo The installer can be found here: libCEC-installer.exe +echo. The installer can be found here: ..\build\libCEC-installer.exe + +GOTO EXIT +:NOSDK10 +echo. Both Visual Studio 2010 and Visual C++ Express 2010 were not found on your system. GOTO EXIT :NOSIS -echo NSIS could not be found on your system. +echo. NSIS could not be found on your system. GOTO EXIT :NODDK -echo Windows DDK could not be found on your system +echo. Windows DDK could not be found on your system :EXIT