Skip to content

Commit

Permalink
docs for vs2015
Browse files Browse the repository at this point in the history
and add community version instead of express
  • Loading branch information
LeoColomb committed Aug 15, 2015
1 parent e7c88ad commit 7fde67f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions docs/visualstudio.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,32 @@ Visual Studio

Installation
------------
To getting started with openFrameworks and Visual Studio, you need to have Visual Studio 2012 installed.
To getting started with openFrameworks and Visual Studio, you need to have [Visual Studio 2015](https://www.visualstudio.com) installed.
Any version should work, Express included.
There are many versions of Visual Studio. If you don't know which one to install, then we recommend Visual Studio 2012 Express for Desktop.
Each generation of Visual Studio (i.e. 2008, 2010, 2012) comes with a different C++ compiler (a compiler is what makes your c++ code into an executable that you can run).
There are many versions of Visual Studio. If you don't know which one to install, then we recommend [Visual Studio Community 2015](https://www.visualstudio.com/products/visual-studio-community-vs.aspx).
Each generation of Visual Studio (i.e. 2010, 2012, 2015) comes with a different C++ compiler (a compiler is what makes your c++ code into an executable that you can run).
Generally, projects created in different generations of Visual Studio are not compatible with each other, but you can upgrade files from old generations to new generations.

**See [setup guide](http://openframeworks.cc/setup/vs) for more detailed instructions.**

_Visual Studio Express is a special version of Visual Studio which is free to download and use indefinitely. There appears to be no restriction of commercial use for Visual Studio Express
versions, but Express versions have a reduced feature set whilst sharing the same compiler and general interface of the more premium versions (e.g. Professsional, Premium, Ultimate, etc).
The premium versions are only really recommended for more commercial oF users, for students who can otherwise get these versions for free, or for users who know for definite that they need
the premium features which aren't available in the Express distributions._
_Visual Studio Community is free for individual developers, open source projects, academic research, education, and small professional teams.
Community versions have a reduced feature set whilst sharing the same compiler and general interface of the more premium versions (e.g. Professional, Enterprise etc).
The premium versions are only really recommended for more commercial oF users, for students who can otherwise get these versions for free, or for users who know for definite that they need
the premium features which aren't available in the Community distributions._

Creating a new openFrameworks project
-------------------------------------
See [projectGenerator page](projectgenerator.md), to understand the usage of this tool.

Open your new Solution
----------------------
Every openFrameworks application is represented by a **'Solution'** and a **'Project'**. A solution is a collection of (generally) co-dependent projects.
The solution for your project contains your project, and the openFrameworks project, which is a library of all openFrameworks functions and classes
Every openFrameworks application is represented by a **'Solution'** and a **'Project'**. A solution is a collection of (generally) co-dependent projects.
The solution for your project contains your project, and the openFrameworks project, which is a library of all openFrameworks functions and classes
which can be used by your project.
Your solution filename will be `openFrameworks/apps/[your name]/[project name]/[project name].sln`. Open this file with Visual Studio either by double
Your solution filename will be `openFrameworks/apps/[your name]/[project name]/[project name].sln`. Open this file with Visual Studio either by double
clicking on it in Explorer, or selecting File>Open>Project/Solution... inside Visual Studio.

Compile and Run
Compile and Run
---------------
Open your solution file `[project].sln`, and hit **F5**. This should compile and run your project. You should see a blank OpenGL window appear.
_If Visual Studio complains that your project cannot be started, try right clicking on your project in the 'Solution Explorer' and select 'Set as startup project' and then try F5 again._
Expand All @@ -44,8 +44,8 @@ These are two build configurations, **"Debug"** and **"Release"**:

Change the world
----------------
Now it's time to get to work coding with openFrameworks. Hit 'Esc' to exit the blank, boring application you just built, and start editing `testApp.cpp`
and `testApp.h` to finally put to rest your critics and friends and make that generative/interactive/totally awesome piece of work that you've been wanting
Now it's time to get to work coding with openFrameworks. Hit 'Esc' to exit the blank, boring application you just built, and start editing `testApp.cpp`
and `testApp.h` to finally put to rest your critics and friends and make that generative/interactive/totally awesome piece of work that you've been wanting
to get out.
Just be careful not to forget your friends and critics in the process!

Expand Down

0 comments on commit 7fde67f

Please sign in to comment.