Commit 1e60d17a authored by mjasperse's avatar mjasperse

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
parent cdd7cd10
......@@ -64,6 +64,7 @@
OutputFile="../../../lib/libzmq.dll"
GenerateDebugInformation="true"
TargetMachine="1"
LinkDLL="true"
/>
<Tool
Name="VCALinkTool"
......@@ -138,6 +139,7 @@
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"
LinkDLL="true"
/>
<Tool
Name="VCALinkTool"
......@@ -215,6 +217,7 @@
OptimizeReferences="2"
EnableCOMDATFolding="2"
TargetMachine="1"
LinkDLL="true"
/>
<Tool
Name="VCALinkTool"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment