How do I compile C++ source code?

Associate
Joined
12 Sep 2006
Posts
1,379
Location
Tayside
Forgive me, I've no clue about coding or compiling.

I've got some source code downloaded from the internet which I'm sure is in C++ (extensions are .cpp, .h, and some files such as makefile with no extension).

I've installed MS Visual C++ Express for free in the vain hope I could load up the files and click the big green 'compile' button at the top of the screen, but I'm lost- VC++E works with 'projects' but even when I can load files the option to compile has disappeared (from the right click menu).

Are there any quick n easy guides out there? Would I be better with MiniGW? Are there any legalities involved as I'm having trouble finding step by step guides myself?

Thanks in advance.
 
Are there build instructions in the source files anywhere? Make files are frequently used by the GNU make utility on Unix-like systems to automate the build process. Be sure it's supposed to compile for Windows in the first place.
 
download an app called gpp - it's the gnome C++ compiler that runs under windows CLI

>gpp file.cpp

:)
 
Back
Top Bottom