[zeromq-dev] Where is source file for libczmq.vcxproj?
Osiris Pedroso
opedroso at gmail.com
Sun Mar 20 14:19:43 CET 2016
The file *builds/msvc/vs2013/libczmq/libczmq.vcxproj* says it is generated
by ZPROJECT.
The RELEASE targets for 32 and 64 bit dlls do not currently generate PDBs,
which prevent easy debugging in Windows in release mode.
The change is simple, adding these lines to libczmq/libczmq.vcxproj:
<ItemDefinitionGroup
Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|x64'">
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup
Condition="'$(Configuration)|$(Platform)'=='ReleaseDLL|Win32'">
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
But I don’t know where to make it.
What/where is the source file for this generated libczmq/libczmq.vcxproj?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.zeromq.org/pipermail/zeromq-dev/attachments/20160320/78833a69/attachment.htm>
More information about the zeromq-dev
mailing list