Click here to Skip to main content
15,887,746 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How to Fix error C2105 ? Pin
Nilesh K.1-Dec-05 23:37
Nilesh K.1-Dec-05 23:37 
QuestionCreating an automated build process - where do I start? Pin
Ian Bowler30-Nov-05 9:56
Ian Bowler30-Nov-05 9:56 
QuestionRe: Creating an automated build process - where do I start? Pin
David Crow30-Nov-05 10:01
David Crow30-Nov-05 10:01 
AnswerRe: Creating an automated build process - where do I start? Pin
Ian Bowler30-Nov-05 10:23
Ian Bowler30-Nov-05 10:23 
GeneralRe: Creating an automated build process - where do I start? Pin
Chris Losinger30-Nov-05 10:40
professionalChris Losinger30-Nov-05 10:40 
GeneralRe: Creating an automated build process - where do I start? Pin
Ian Bowler30-Nov-05 10:57
Ian Bowler30-Nov-05 10:57 
GeneralRe: Creating an automated build process - where do I start? Pin
Chris Losinger30-Nov-05 14:08
professionalChris Losinger30-Nov-05 14:08 
GeneralRe: Creating an automated build process - where do I start? Pin
David Crow30-Nov-05 10:49
David Crow30-Nov-05 10:49 
Makefiles are actually simple once you peel away all of the unnecessary stuff. For example:

myproject.exe : myproject.obj file1.obj file2.obj myproject.res
    link.exe /out:myproject.exe myproject.obj file1.obj file2.obj myproject.res
 
myproject.obj : myproject.cpp
    cl.exe /W4 myproject.cpp
 
file1.obj : file1.cpp
    cl.exe /W4 file1.cpp
 
file2.obj : file2.cpp
    cl.exe /W4 file2.cpp
 
myproject.res : myproject.rc
    rc.exe /fo myproject.res myproject.rc
says that myproject.exe depends on myproject.obj, file1.obj, file2.obj, and myproject.res; myproject.exe is created by executing link.exe /out:myproject.exe myproject.obj file1.obj file2.obj myproject.res. Also, myproject.obj depends on myproject.cpp; myproject.obj is created by executing cl.exe /W4 myproject.cpp. The files listed on the right side of ':' are what get compiled or linked together to create the file on the left side of ':'.

Any clearer?

There's also the IDE that can be launched without any human intervention. Check out its command-line arguments.


"Take only what you need and leave the land as you found it." - Native American Proverb


GeneralRe: Creating an automated build process - where do I start? Pin
Ian Bowler30-Nov-05 10:52
Ian Bowler30-Nov-05 10:52 
GeneralRe: Creating an automated build process - where do I start? Pin
PJ Arends30-Nov-05 10:57
professionalPJ Arends30-Nov-05 10:57 
GeneralRe: Creating an automated build process - where do I start? Pin
Ian Bowler30-Nov-05 11:04
Ian Bowler30-Nov-05 11:04 
GeneralRe: Creating an automated build process - where do I start? Pin
Graham Bradshaw30-Nov-05 11:39
Graham Bradshaw30-Nov-05 11:39 
AnswerRe: Creating an automated build process - where do I start? Pin
Graham Bradshaw30-Nov-05 11:38
Graham Bradshaw30-Nov-05 11:38 
AnswerRe: Creating an automated build process - where do I start? Pin
SilentSilent1-Dec-05 0:28
SilentSilent1-Dec-05 0:28 
QuestionDialup internet connections Pin
PJ Arends30-Nov-05 9:25
professionalPJ Arends30-Nov-05 9:25 
QuestionRe: Dialup internet connections Pin
David Crow30-Nov-05 9:33
David Crow30-Nov-05 9:33 
AnswerRe: Dialup internet connections Pin
PJ Arends30-Nov-05 9:48
professionalPJ Arends30-Nov-05 9:48 
QuestionRe: Dialup internet connections Pin
David Crow30-Nov-05 9:59
David Crow30-Nov-05 9:59 
AnswerRe: Dialup internet connections Pin
PJ Arends30-Nov-05 10:09
professionalPJ Arends30-Nov-05 10:09 
GeneralRe: Dialup internet connections Pin
David Crow30-Nov-05 10:29
David Crow30-Nov-05 10:29 
GeneralRe: Dialup internet connections Pin
PJ Arends30-Nov-05 10:45
professionalPJ Arends30-Nov-05 10:45 
GeneralRe: Dialup internet connections Pin
David Crow30-Nov-05 10:57
David Crow30-Nov-05 10:57 
GeneralRe: Dialup internet connections Pin
PJ Arends30-Nov-05 11:05
professionalPJ Arends30-Nov-05 11:05 
QuestionRe: Dialup internet connections Pin
Shog930-Nov-05 12:09
sitebuilderShog930-Nov-05 12:09 
AnswerRe: Dialup internet connections Pin
PJ Arends30-Nov-05 15:06
professionalPJ Arends30-Nov-05 15:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.