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?
_______________________________________________
zeromq-dev mailing list
[email protected]
http://lists.zeromq.org/mailman/listinfo/zeromq-dev