Skip to content

Commit

Permalink
Update builds/msvc/libzmq/libzmq.vcproj
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mjasperse committed Nov 2, 2012
1 parent cdd7cd1 commit 1e60d17
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builds/msvc/libzmq/libzmq.vcproj
Expand Up @@ -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"
Expand Down Expand Up @@ -138,6 +139,7 @@
OptimizeReferences="2" OptimizeReferences="2"
EnableCOMDATFolding="2" EnableCOMDATFolding="2"
TargetMachine="1" TargetMachine="1"
LinkDLL="true"
/> />
<Tool <Tool
Name="VCALinkTool" Name="VCALinkTool"
Expand Down Expand Up @@ -215,6 +217,7 @@
OptimizeReferences="2" OptimizeReferences="2"
EnableCOMDATFolding="2" EnableCOMDATFolding="2"
TargetMachine="1" TargetMachine="1"
LinkDLL="true"
/> />
<Tool <Tool
Name="VCALinkTool" Name="VCALinkTool"
Expand Down

0 comments on commit 1e60d17

Please sign in to comment.