Wrapping "#include <GLUT/glut.h>" with #ifdef for linux compatibility

This commit is contained in:
Andrew Meadows 2012-09-09 08:02:59 -07:00
parent 933946320a
commit 9b8e8ff5de
4 changed files with 16 additions and 3 deletions

View file

@ -6,10 +6,14 @@
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
#include <iostream>
#include "field.h"
#include "world.h"
#include <GLUT/glut.h>
// A vector-valued field over an array of elements arranged as a 3D lattice

View file

@ -14,13 +14,17 @@
// s = clear cells to zero but preserve synapse weights
//
#include <stdlib.h>
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
#include <iostream>
#include <fstream>
#include <math.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
// These includes are for the serial port reading/writing

View file

@ -7,6 +7,7 @@
//
#include <iostream>
#include <stdio.h>
#include "network.h"

View file

@ -6,8 +6,12 @@
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#include <iostream>
#ifdef __APPLE__
#include <GLUT/glut.h>
#else
#include <GL/glut.h>
#endif
#include <iostream>
#include "world.h"
void render_world_box()