Maybe a stupid question, are you in release mode or debug mode while compiling ?
On Mon, Feb 23, 2015 at 12:27 PM, Joe Weidenbach <[email protected]> wrote: > Thank you thank you thank you Marcus!!! > > Oddly enough, after 8 years in a mixed programming/IT role, I hadn't even > considered using a VM. Brilliant! > > Also, the technical info is great! Much appreciated! > > Thanks, > > Joe > > On Mon, Feb 23, 2015 at 12:24 PM, Marcus Ottosson <[email protected]> > wrote: > >> Set up a virtual machine - such as VMWare or VirtualBox - and try it out >> on a clean Windows install. >> >> In general, anything built using Visual Studio requires a >> re-distributable for the corresponding version; e.g. Visual Studio 2010 >> will link against dlls that your users can get a hold of via the Visual >> Studio 2010 re-distributable. >> >> But you can also bundle them. You’re typically looking for two dll’s; >> msvcr100 and msvcp100 for the 2010 version, but it depends on what you use. >> For example, here’s all files included in the 2013 re-distributable. >> >> mfc120.dll >> mfc120u.dll >> mfcm120.dll >> mfcm120u.dll >> msvcp120.dll >> msvcr120.dll >> vcamp120.dll >> vcomp120.dll >> >> That, along with any other libraries you dynamically linked with will >> need to be included. >> >> You can use Dependency Walker to find out exactly which; it hooks into an >> executable and “spies” on which libraries it imports. >> >> - http://www.dependencywalker.com/ >> >> It can be a bit cryptic to use at first but it’s the go-to tool for these >> type of situations. >> >> Good luck! >> >> Best, >> Marcus >> >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Python Programming for Autodesk Maya" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOCo6WHBagky29EWLSVfC8%2B0zy4EN_y404-%3DOtSE1fOQgQ%40mail.gmail.com >> <https://groups.google.com/d/msgid/python_inside_maya/CAFRtmOCo6WHBagky29EWLSVfC8%2B0zy4EN_y404-%3DOtSE1fOQgQ%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >> >> For more options, visit https://groups.google.com/d/optout. >> > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/CAM33%3Da72tbX6k01Lnk2HqW%3D6mkHBh%2BeDOfkEr2G4ZvoHKw_quw%40mail.gmail.com > <https://groups.google.com/d/msgid/python_inside_maya/CAM33%3Da72tbX6k01Lnk2HqW%3D6mkHBh%2BeDOfkEr2G4ZvoHKw_quw%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- --:: Kurian ::-- -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CANEMyhNLRTCCgM93O_JpCGdxXBMCK_72EeWT8Hx0jvopZusDVw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
