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