[zeromq-dev] Where is source file for libczmq.vcxproj?

Osiris Pedroso opedroso at gmail.com
Sun Mar 20 15:00:03 CET 2016


Oops. Seems like I will also need to change the file
"czmq\builds\msvc\vs2013\libzmq.import.props", since it will be missing the
copy of the newly generated RELEASE PDB after my changes:

So what/where is the source file for this (assumed to be generated)
czmq\builds\msvc\vs2013\libzmq.import.props file?


On Sun, Mar 20, 2016 at 8:19 AM Osiris Pedroso <opedroso at gmail.com> wrote:

> 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/faa90b0c/attachment.htm>


More information about the zeromq-dev mailing list