One solution with three projects:
Project A: Static Library, uses many C++ runtime library calls.
Project B: Console App, calls functions in and depends on library A.
Project C: Console App, calls functions in and depends on library A.
I want to compile B.EXE so that the C++ runtime library "runs out of the
DLL" (/MD), and I'm trying to build C.EXE so that the runtime library "runs
out of the EXE" (/MT).
As it is, I have to manually reconfigure Project A settings every time I
want to recompile B or C. If I'm compiling B.EXE I have to first change the
Project A settings to /MD, compile Project A, then compile Project B. If I
then want to compile C.EXE I have to first change the Project A settings to
/MT, compile Project A, then compile Project C. In other words, I'm
constantly having to change the settings and recompile the static library
before I build my EXE's.
Is there an easier way to do this?
TIA,
ed
--
Michael Maio
Kevin Frei
Visual C++ Team
This posting is provided "AS IS" with no warranties, and confers no rights.
"Ed Fair" <ed_...@yahoo.com> wrote in message
news:OCXLYfigCHA.2636@tkmsftngp08...