Top Banner
VISUAL STUDIO Amjad Alsuhaim
17

VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

May 14, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

VISUAL STUDIO Amjad Alsuhaim

Page 3: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

3- Open the exe file.

4- Click on agree checkbox.

5- click on INSTALL.

Page 4: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

6- Wait until it finish (it may takes several hours and it will request you to restart your computer ).

Page 5: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

7- Click LUNCH

Page 6: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

You have to register you product click register online

Page 7: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

Sing in using your Microsoft account and fill the form then click on continue.

Page 8: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

YOU WILL GET YOUR PRODUCT KEY COPY IT THEN PASTE IT IN THE VISUAL STUDIO WINDOW .

Page 9: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

OPENGL

Page 11: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

2- Open the zip file.

3- Extract the file to the desktop.

Page 12: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

4- Open the folder.

5- Copy the glut.h to this path C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\include

You will get a warring message click on Continue

Page 13: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

6- Copy the glut32.lib to this path C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\lib

You will get a warring message click on Continue

Page 14: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

7- Copy the glut32.dll : If you have 32-bit operating system go to this path C:\Windows\System32\

If you have 64-bit operating system go to this path C:\Windows\SysWOW64\

You will get a warring message click on Continue

Page 15: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

COMPILING OPENGL/GLUT PROGRAMS:

Page 16: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

Open visual studio and create a new project: choose File | New from the File

Menu

select the Projects tab

open visual C++ tap

choose Win32 Console Application

fill in your Project name

Click ok

Project Name

Page 17: VISUAL STUDIO - WordPress.com · Open visual studio and create a new project: choose File | New from the File Menu select the Projects tab open visual C++ tap choose Win32 Console

Click finish.

include glut in the header of your file source (#include <glut.h>)