Skip to content
Snippets Groups Projects
Commit 8e0a609b authored by nash169's avatar nash169 Committed by mdjurfeldt
Browse files

Change OpenGL header path

Add conditional to account for different OpenGL header path on macOS.
parent 30046873
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,11 @@
// VisualiseNeurons.h written by Johannes Hjorth, hjorth@nada.kth.se
#ifdef __APPLE__
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif
#include <GL/freeglut.h>
#include <math.h>
#include <mpi.h>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment