Archive

Simple C Plus Plus Project

Creating a Skeleton C++ Project using GNU autotools

Installing the Software

Ensure you have a working system with autoconf automake make g++ gcc etc… Debian packages can be installed with the following command:

# apt-get install build-essential automake autoconf

or if your using aptitude…

# aptitude install build-essential automake autoconf

Creating the Script

Run the script below to create your new project in your current directory. To do this you will need to copy and paste the script into a file using your preferred text editor and then make the script executable:

$ chmod [continued...]