Difference between revisions of "Setup Visual Studio Express"

From PLplotWiki
Jump to: navigation, search
(changed details about IDE not working)
(Changed link name as it is no longer 2008)
Line 1: Line 1:
== Setup Visual C++ (2008) ==
+
== Setup Visual C++ ==
 
Visual C++ Express Edition<ref>[http://www.microsoft.com/express/vc/ Visual C++ Express Homepage]</ref> is a integrated development environments (IDE) developed by Microsoft that is a lightweight version of the Microsoft Visual Studio C++ product line. The idea of express editions, according to Microsoft, is to provide streamlined, easy-to-use and easy-to-learn IDEs for users other than professional software developers, such as hobbyists and students.<ref>[http://en.wikipedia.org/wiki/Visual_Studio_Express Wikipedia entry about Visual Studio Express]</ref>
 
Visual C++ Express Edition<ref>[http://www.microsoft.com/express/vc/ Visual C++ Express Homepage]</ref> is a integrated development environments (IDE) developed by Microsoft that is a lightweight version of the Microsoft Visual Studio C++ product line. The idea of express editions, according to Microsoft, is to provide streamlined, easy-to-use and easy-to-learn IDEs for users other than professional software developers, such as hobbyists and students.<ref>[http://en.wikipedia.org/wiki/Visual_Studio_Express Wikipedia entry about Visual Studio Express]</ref>
  
 
=== Download and install ===
 
=== Download and install ===
Download the webinstaller from the [http://www.microsoft.com/express/vc/ Visual C++ 2008 Express Edition Website] and run it. Go through the installer wizard - Visual C++ will be downloaded and installed accordingly. Alternatively you could download the whole DVD containing the complete Visual Studio 2008 Express Edition set ([http://www.microsoft.com/express/download/ scroll to the bottom]) to install the tools offline.
+
Download the webinstaller from the [http://www.microsoft.com/express/vc/ Visual C++ Express Edition Website] and run it. Go through the installer wizard - Visual C++ will be downloaded and installed accordingly. Alternatively you could download the whole DVD containing the complete Visual Studio 2008 Express Edition set ([http://www.microsoft.com/express/download/ scroll to the bottom]) to install the tools offline.
  
 
=== Setup ===
 
=== Setup ===

Revision as of 07:44, 27 September 2013

Setup Visual C++

Visual C++ Express Edition[1] is a integrated development environments (IDE) developed by Microsoft that is a lightweight version of the Microsoft Visual Studio C++ product line. The idea of express editions, according to Microsoft, is to provide streamlined, easy-to-use and easy-to-learn IDEs for users other than professional software developers, such as hobbyists and students.[2]

Download and install

Download the webinstaller from the Visual C++ Express Edition Website and run it. Go through the installer wizard - Visual C++ will be downloaded and installed accordingly. Alternatively you could download the whole DVD containing the complete Visual Studio 2008 Express Edition set (scroll to the bottom) to install the tools offline.

Setup

To configure and compile plplot with Visual C++ you can either use the command line interface or the integrated development environment. See the instructions at Configure PLplot for Visual CXX CLI or Configure PLplot for the Visual Studio IDE.

If you are using the CLI you may find it useful to set up a batch file to prepare the environment before you start. To do so open your favorite text editor and enter the following CLI commands

@echo off

rem setup Visual C++ compiler
call "%VS90COMNTOOLS%"\vsvars32.bat

rem setup PLplot library
set PLPLOTDIR=path_to_plplot
set PLPLOT_LIB=%PLPLOTDIR%\data
set PATH=%PLPLOTDIR%\dll;%PATH%

and save this to e.g. vcvars.bat. Start you Windows CLI, cd into the directory where the batch file was saved and run vcvars.bat. Run nmake /?, to see if everything works. Your Visual C++ developing environment is now ready.

Links

  1. Visual C++ Express Homepage
  2. Wikipedia entry about Visual Studio Express