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 @@ ...@@ -64,6 +64,7 @@
OutputFile="../../../lib/libzmq.dll" OutputFile="../../../lib/libzmq.dll"
GenerateDebugInformation="true" GenerateDebugInformation="true"
TargetMachine="1" TargetMachine="1"
LinkDLL="true"
/> />
<Tool <Tool
Name="VCALinkTool" Name="VCALinkTool"
...@@ -138,6 +139,7 @@ ...@@ -138,6 +139,7 @@
OptimizeReferences="2" OptimizeReferences="2"
EnableCOMDATFolding="2" EnableCOMDATFolding="2"
TargetMachine="1" TargetMachine="1"
LinkDLL="true"
/> />
<Tool <Tool
Name="VCALinkTool" Name="VCALinkTool"
...@@ -215,6 +217,7 @@ ...@@ -215,6 +217,7 @@
OptimizeReferences="2" OptimizeReferences="2"
EnableCOMDATFolding="2" EnableCOMDATFolding="2"
TargetMachine="1" TargetMachine="1"
LinkDLL="true"
/> />
<Tool <Tool
Name="VCALinkTool" 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