updated for linux

This commit is contained in:
suhrke 2017-04-06 18:23:47 -07:00
parent 31df64b272
commit bc2a3aad8f
4 changed files with 18 additions and 15 deletions

View File

@ -4,3 +4,6 @@
*.exe
*.log
# executables
reflex2q3_*

12
ReflexToQ3/Makefile Normal file
View File

@ -0,0 +1,12 @@
EXV6=reflex2q3_v6
EXV8=reflex2q3_v8
CC=g++
CFLAGS=-std=c++11 -I"includes" -I"/usr/include/eigen3"
all: v6 v8
v6:
$(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV6) 2>error6.log
v8:
$(CC) includes/v8mapparser.cpp main.cpp $(CFLAGS) -o $(EXV8) 2>error8.log

View File

@ -15,8 +15,8 @@
// Platform Libraries
#define NOMINMAX
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
//#define WIN32_LEAN_AND_MEAN
//#include <windows.h>
/* // Chronokun Libraries
#include "ckmath/ckmath.h" */

View File

@ -1,12 +0,0 @@
EXV6=reflex2q3_v6
EXV8=reflex2q3_v8
CC=g++
CFLAGS=-std=c++11 -I"includes"
all: V6 V8
V6:
$(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV6) 2>error6.log
V8:
$(CC) includes/mapparser.cpp main.cpp $(CFLAGS) -o $(EXV8) 2>error8.log