From 6d3bd1bafb3fdfa003219620c274447f006dff48 Mon Sep 17 00:00:00 2001 From: Lars Op den Kamp Date: Sat, 19 Nov 2011 00:06:48 +0100 Subject: [PATCH] win32: get LibCecSharp.dll directly from the Release dir since it's not copied to the output directory for some reason when creating it from the command line. --- project/create-installer.cmd | 7 +++++-- project/libCEC.nsi | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/project/create-installer.cmd b/project/create-installer.cmd index 5187528..f82db3d 100644 --- a/project/create-installer.cmd +++ b/project/create-installer.cmd @@ -16,8 +16,11 @@ echo Cleaning libCEC %COMPILER% libcec.sln /clean Release echo Compiling libCEC -%COMPILER% libcec.sln /clean Release -%COMPILER% libcec.sln /build Release +%COMPILER% libcec.sln /build Release /project libcec +echo Compiling cec-client +%COMPILER% libcec.sln /build Release /project testclient +echo Compiling LibCecSharp +%COMPILER% libcec.sln /build Release /project LibCecSharp rem Copy driver installer echo Copying driver installer diff --git a/project/libCEC.nsi b/project/libCEC.nsi index ee6df6e..7477718 100644 --- a/project/libCEC.nsi +++ b/project/libCEC.nsi @@ -52,7 +52,7 @@ Section "libCEC" SecLibCEC File "..\COPYING" File "..\libcec.dll" File "..\libcec.lib" - File "..\LibCecSharp.dll" + File "Release\LibCecSharp.dll" File "..\pthreadVC2.dll" File "..\README" -- 2.34.1