mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 01:03:19 +02:00
Wrapping "#include <GLUT/glut.h>" with #ifdef for linux compatibility
This commit is contained in:
parent
933946320a
commit
9b8e8ff5de
4 changed files with 16 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
6
main.cpp
6
main.cpp
|
@ -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
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
//
|
||||
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
#include "network.h"
|
||||
|
||||
|
||||
|
|
6
util.cpp
6
util.cpp
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue