diff --git a/Serializing/Makefile b/Serializing/Makefile index dbbb129..979c38e 100644 --- a/Serializing/Makefile +++ b/Serializing/Makefile @@ -1,6 +1,6 @@ -test: test.cpp StackTrace.cpp - g++ -g test.cpp StackTrace.cpp -o test -std=c++11 -rdynamic +test: test.cpp ../Framework/StackTrace.cpp JSONVisitor.h + g++ -Os test.cpp ../Framework/StackTrace.cpp -o test -std=c++11 -rdynamic diff --git a/Serializing/Makefile b/Serializing/Makefile index dbbb129..979c38e 100644 --- a/Serializing/Makefile +++ b/Serializing/Makefile @@ -1,6 +1,6 @@ -test: test.cpp StackTrace.cpp - g++ -g test.cpp StackTrace.cpp -o test -std=c++11 -rdynamic +test: test.cpp ../Framework/StackTrace.cpp JSONVisitor.h + g++ -Os test.cpp ../Framework/StackTrace.cpp -o test -std=c++11 -rdynamic diff --git a/Serializing/test.cpp b/Serializing/test.cpp index 21c66f2..313eb78 100644 --- a/Serializing/test.cpp +++ b/Serializing/test.cpp @@ -5,7 +5,7 @@ #include #include #include -#include "StackTrace.h" +#include "../Framework/StackTrace.h" #include "Utilities.h" #include "Types.h" #include "Visitor.h"