Skip to content

Commit

Permalink
Change OpenGL header path
Browse files Browse the repository at this point in the history
Add conditional to account for different OpenGL header path on macOS.
  • Loading branch information
nash169 authored and mdjurfeldt committed Nov 29, 2016
1 parent 3004687 commit 8e0a609
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions utils/VisualiseNeurons.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
// VisualiseNeurons.h written by Johannes Hjorth, [email protected]


#ifdef __APPLE__
#include <OpenGL/gl.h>
#else
#include <GL/gl.h>
#endif
#include <GL/freeglut.h>
#include <math.h>
#include <mpi.h>
Expand Down

0 comments on commit 8e0a609

Please sign in to comment.