Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to change project type?

Status
Not open for further replies.

sedawk

Programmer
Feb 5, 2002
247
US
Hi,

I got a project created in make file. When I get into Project--> Setting, under "general" tab there is a MAKE command. I want to know how if it is possible to change project type to console application(this is a simple console application) since I was not allowed to compile the edited *.c file. The error message is:

REM !!! CVTOBJ is no longer necessary - please remove !!! *.obj
link /NODEFAULTLIB /INCREMENTAL:NO /PDB:NONE /RELEASE /NOLOGO -subsystem:windows,4.0 -out:paintext.exe paintext.obj libc.lib oldnames.lib kernel32.lib ws2_32.lib mswsock.lib advapi32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib
LINK : fatal error LNK1104: cannot open file "paintext.exe"
NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio\VC98\BIN\link.exe"' : return code '0x450'
Stop.
Error executing NMAKE.

I am using VC++ 6.0. Is there anything wrong?
 
Never tried it. Odds are that you will have to create your own project file using the files that have been supplied - make sure you don't have MFC stuff in the files. CoolNameDenied
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top