From 1e60d17a23ce943ac7575185acfe5049e70c7e2a Mon Sep 17 00:00:00 2001 From: mjasperse Date: Fri, 2 Nov 2012 11:29:46 +1100 Subject: [PATCH] Update builds/msvc/libzmq/libzmq.vcproj Without the LinkDLL statement, command-line compile using vcbuild attempts to compile EXE and complains about entrypoint The LinkDLL statement forces the linker to produce desired output --- builds/msvc/libzmq/libzmq.vcproj | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builds/msvc/libzmq/libzmq.vcproj b/builds/msvc/libzmq/libzmq.vcproj index 8c6aa7fb..e9414076 100644 --- a/builds/msvc/libzmq/libzmq.vcproj +++ b/builds/msvc/libzmq/libzmq.vcproj @@ -64,6 +64,7 @@ OutputFile="../../../lib/libzmq.dll" GenerateDebugInformation="true" TargetMachine="1" + LinkDLL="true" />