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
|
*.exe
|
||||||
|
|
||||||
*.log
|
*.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
|
// Platform Libraries
|
||||||
#define NOMINMAX
|
#define NOMINMAX
|
||||||
#define WIN32_LEAN_AND_MEAN
|
//#define WIN32_LEAN_AND_MEAN
|
||||||
#include <windows.h>
|
//#include <windows.h>
|
||||||
|
|
||||||
/* // Chronokun Libraries
|
/* // Chronokun Libraries
|
||||||
#include "ckmath/ckmath.h" */
|
#include "ckmath/ckmath.h" */
|
||||||
@ -44,4 +44,4 @@
|
|||||||
#define Y 1
|
#define Y 1
|
||||||
#define Z 2
|
#define Z 2
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -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