Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 834 Bytes

File metadata and controls

21 lines (13 loc) · 834 Bytes

Setup Instructions

This is a very basic project, intended to only demonstrate different graphical techniques, rather than offer an easily playable scene. You can, however, run the scene with some fiddling on your own machine.

Firstly, you need Visual Studio. You must then import the project .sln file 'Assessment2.sln' as a project.

From here, you must add the include files and lib files to the project. The specific lines that need to be added, and where to add them are as follows:

VC++:
Include Directories: ../../include;
Library Directories: ../../lib/glfw-3.4.bin.WIN64/lib-vc2022;

Linker/Input:
Additional Dependencies: glfw3.lib;

Add gl3w.c to source files.

From here, you should be able to launch the scene in Debug Mode using the IDE.