updated for linux
This commit is contained in:
parent
31df64b272
commit
bc2a3aad8f
3
ReflexToQ3/.gitignore
vendored
3
ReflexToQ3/.gitignore
vendored
@ -4,3 +4,6 @@
|
||||
*.exe
|
||||
|
||||
*.log
|
||||
|
||||
# executables
|
||||
reflex2q3_*
|
||||
|
12
ReflexToQ3/Makefile
Normal file
12
ReflexToQ3/Makefile
Normal 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
|
@ -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" */
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user