Project 3 Part 2 Compilation Test

Homework Introduction

Description

You should submit your project 3 part 2 here to test whether it can pass compliation.

Build Method

You can use either cmake or GNU make.

If your use CMakeLists.txt, please choose the problem with cmake.

If your use Makefile, please choose the problem with GNU make.

A sample of CMakeLists.txt can be found at submission description.

Do not modify the flags "-Wall -Werror -pedantic -Wno-unused-result -Wno-deprecated-declarations", or this submission is not valid!

OpenGL Notes

In the lab, we provided a OpenGL include format for the compatibility on both Windows, Linux and MacOS, you should follow it to pass the compiling test since the OJ is running under Linux, different from most of your computers.

#ifdef __APPLE__
#include <GLUT/glut.h>
#elif _WIN32
#include <windows.h>
#include <GL/freeglut.h>
#else
#include <GL/freeglut.h>
#endif

Submission

Please compress all of your files in a .zip file directly (including your .c, .h, and README).

Status
Finished
Problems
1
Open Since
2019-12-13 00:00
DDL
2019-12-15 23:59
Extension
0.0 hour(s)