Configuring your C++ Environment - Part 2
In the last article in this series I let you know about a more up-to-date... and more importantly free C++ environment. In this article I will give you some step-by-step instructions for creating the environment on your PC.
The following instructions will set up a Source Code Repository, Source Code Browser, Source Code Documenter, Executable Compiler for completed projects and finally the C++ IDE.
NOTE : This blog was written after I had installed the environment, in the future I hope to give you better step-by-step instructions for a carefree installation.
CollabNet Subversion (http://www.collab.net/downloads/subversion/)
- Download and install Collabnet Subversion.
- During the installation you will be asked to enter a default repository, set the location to "C:\svn_repository".
- During the installation you will be asked to install Apache Tomcat, use default setting to install this application on port 80.
- Wait until setup is completed.
- In Windows Explorer navigate to the Collabnet Subversion HTTPD Conf directory ("C:\Program Files\CollabNet\Subversion Server\httpd\conf").
- In Notepad open file "httpd.conf".
- Locate and change the "Listen 80" line to "Listen 85".
- Save "httpd.conf".
- Reboot.
- Download and install TortoiseSVN.
- Straight forward setup, no further instructions required.
- In Windows Explorer go to the SVN Repository Directory ("C:\svn_repository").
- Create a new directory called Project ("C:\svn_repository\Project").
- On the Project directory right click and select TortoiseSVN --> Create Repository Here.
- In Windows Explorer create a new working directory ("C:\svn_working_folder")
- Create a new directory called Project ("C:\svn_working_folder\Projects").
- Create a new branch repository directory for completed versions ("C:\svn_working_folder\Projects\Branches").
- Create a new branch repository directory for in progress versions ("C:\svn_working_folder\Projects\Trunk").
- In Windows Explorer select the directory called "C:\svn_working_folder" and right-click.
- Select TortoiseSVN --> Import. This will import the new directory structure to the SVN Repository.
- In Windows Explorer delete ("C:\svn_working_folder\Projects\Branches").
- In Windows Explorer delete ("C:\svn_working_folder\Projects\Trunk").
- In Windows Explorer select the directory called "C:\svn_working_folder\Projects" and right-click.
- Select TortoiseSVN --> Check Out...
- In URL Repository select "file:///C:/svn_repository/Projects/Trunk"
- In Checkout Directory select "C:\svn_working_folder\Projects"
- In Checkout Depth select "Fully Inclusive".
- In Revision Select "HEAD Revision".
- Click "OK".
- "C:\svn_working_folder\Projects" now has SVN Commit/Update functionality.
- In windows explorer select the directory called "C:\svn_working_folder\".
- Right-cick and select TortoiseSVN --> Repo-browser.
- In the URL windows type "file:///C:/svn_repository/Projects" and click <OK>.
- Expand the projects direcortory, the screen should show the following...
In windows explorer you should see the following directory structure and SVN icons...
Doxygen (http://www.stack.nl/~dimitri/doxygen/download.html#latestsrc)
- Download and install Doxygen.
- Straight forward setup, no further instructions required.
- Download and install InnoSetup.
- Straight forward setup, no further instructions required.
- Download and install Microsoft Visual C++ Express 2010.
- Straight forward setup, no further instructions required.
0 Comments Received
Leave A Reply