> There is an issue that needs fixing but, apart from this, it works for me. > Good!
> The issue is that your build directories need the file 'cfg.h' > I just copied cfg.h from corresponding build.vc directories. Is it correct? I think, yes, if (add_prebuild==True). And what about mode "add_prebuild=False", where cfg.h is generated by mpir_config.py? Today I remembered about <UseDebugLibraries> property. It is a rather important property, it shows whether this configuration Debug or Release. <UseDebugLibraries> should be set at the beginning of vcxproj, before importing any Microsoft system property sheet, because they depends from <UseDebugLibraries>. AppWizard always set <UseDebugLibraries> for newly generated projects, but ProjectConverter (from previous MSVC version) doesn't. MPIR projects have no <UseDebugLibraries>. Why? Is there a serious reason for it? I added <UseDebugLibraries> to projects in "handmade" directory, and modified mpir_config_p.py to add <UseDebugLibraries> to all projects. Also I moved Project/Filters/Solution generators to separate Python modules. All these changes are committed to my repo, branch msvc_config -- You received this message because you are subscribed to the Google Groups "mpir-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/mpir-devel. For more options, visit https://groups.google.com/d/optout.
