Semester 7 lab stuff.
This is a big Cmake Project. Cmake FTW.
The folder consists of individual MSVC (2019) Solutions (and projects). To make another, copy and paste. Much easier than doing the below instructions by hand.
Less of instructions and more of reminder tbh
To create a new project under the solution:
- Set the include paths, adding:
$(SolutionDir)etc/freeglut/include
$(SolutionDir)etc/glew-2.2.0/include
- Set library files in the linker section Add these library search paths
$(SolutionDir)etc/freeglut/lib/x64
$(SolutionDir)etc/freeglut/lib/Release/x64
Add these library names:
freeglut.lib
glew32.lib
glew32s.lib
- Set environment
EITHER COPY THE DDLs TO
x64/Debug
, or edit environment and add this entry:
PATH=$(SolutionDir)dll;%PATH%