www.digitalmars.com         C & C++   DMDScript  

c++.command-line - Visual C++ 6.0 dsp project?

reply Gerhard Wiesinger <digitalmars wiesinger.com> writes:
Hello!

Is it possible to compile an existing Microsoft Visual C++ 6.0 *.dsp
project with all dependend projects to compile with the digital mars
compiler?

I tried it with a Makefile (*.mak exported from VC++ 6.0) but it does
not work well.
Error: unrecognized flag '/Gm'

DM is the latest downloadable version. (non beta)

Original command line is:
Also
MSDEV myproject.dsp /MAKE ALL /REBUILD

does not work well.

Also when myproject.dsp depends on anotherproject.dsp this should be
compiled to.

Thank you for the answer.

Regards,
Gerhard Wiesinger
Mar 17 2003
parent "Walter" <walter digitalmars.com> writes:
DMC++ won't work directly with MSVC .dsp files, but usually will work with
the makefiles with some modification. Try just removing the /Gm switch.

"Gerhard Wiesinger" <digitalmars wiesinger.com> wrote in message
news:Pine.LNX.4.50.0303180856450.27613-100000 bbs.intern...
 Hello!

 Is it possible to compile an existing Microsoft Visual C++ 6.0 *.dsp
 project with all dependend projects to compile with the digital mars
 compiler?

 I tried it with a Makefile (*.mak exported from VC++ 6.0) but it does
 not work well.
 Error: unrecognized flag '/Gm'

 DM is the latest downloadable version. (non beta)

 Original command line is:
 Also
 MSDEV myproject.dsp /MAKE ALL /REBUILD

 does not work well.

 Also when myproject.dsp depends on anotherproject.dsp this should be
 compiled to.

 Thank you for the answer.

 Regards,
 Gerhard Wiesinger
Mar 18 2003