C++: Difference between revisions
From charlesreid1
No edit summary |
|||
| Line 27: | Line 27: | ||
== Building via Autotools == | == Building via Autotools == | ||
See the [[Autotools]] page for details. | |||
= C++ Libraries = | = C++ Libraries = | ||
Revision as of 15:49, 26 October 2010
http://www.codeguru.com/forum/showthread.php?t=
Building C++ Programs
Building on the Command-Line
The Hello World page has an example of a simple "hello world" program in C++. You can also visit the page for the 2010 Scientific Computing Summer Workshop page and view the second workshop, which is on creating and building scientific software.
Building via Makefiles
The Make page has an example of how to build a more complex program in C++ using a Makefile to automate the process. Also, as mentioned above, you can visit the 2010 Scientific Computing Summer Workshop page. The second workshop also covers Makefiles.
Building via CMake
For more details on building C++ programs via CMake, visit the CMake page.
Building via Autotools
See the Autotools page for details.