Setup Project

  • Thread starter Thread starter S Wheeler
  • Start date Start date
S

S Wheeler

Hi -
I am creating a Setup Deplloyment application for a MFC app that uses STL.
What are the necessary Merge Modules ? And what is the difference between:

VC_User_MFC71_RTL_X86_---.msm and VC_User_MFC71_loc_X86_---.msm

and:

VC_User_STL71_RTL_X86_---.msm and VC_User_CRT71_RTL_X86_---.msm

Which should I all to my setup project?

Thanks
 
S Wheeler said:
Hi -
I am creating a Setup Deplloyment application for a MFC app that uses
STL. What are the necessary Merge Modules ? And what is the difference
between:
VC_User_MFC71_RTL_X86_---.msm

MFC runtime

VC_User_MFC71_loc_X86_---.msm

Localization files for MFC

VC_User_STL71_RTL_X86_---.msm

C++ runtime library

VC_User_CRT71_RTL_X86_---.msm

C runtime library.
Which should I all to my setup project?

Whichever ones you're using - sounds like probably all of them (except maybe
the localization files).

-cd
 
Back
Top