Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: Mephisto on December 23, 2004, 01:21 PM

Title: VC7 Project Settings Question
Post by: Mephisto on December 23, 2004, 01:21 PM
How do I specify that I don't want the various libraries compiled into my exe so that the user is required to provide the VC7 runtimes required?  The idea is to make the exe smaller.
Title: Re: VC7 Project Settings Question
Post by: UserLoser. on December 23, 2004, 03:53 PM
Things you don't want?  Under Linker goto Optimizations.  For References set it to Eliminate Unreferenced Data (/OPT:REF).  I think that's what you want
Title: Re: VC7 Project Settings Question
Post by: Adron on December 23, 2004, 10:21 PM
On the C/C++ or code generation page you can select what run-time library to use. "DLL" means that the user provides the DLLs. On the general page you can select whether to use MFC or ATL from a DLL, statically or not at all.