diff --git a/makefile b/makefile index 8e26d2f..3f0903c 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ NUMCORES = $(shell grep -c "^processor" /proc/cpuinfo) NUMCORESWIN = ${NUMBER_OF_PROCESSORS} TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines LINKEDLIBS = -lgmp -lgmpxx -INCLUDE_DIR = ../../headers +INCLUDE_DIR = ./headers TESTDIR = ./test/mee BINDIR = ./bin LOGDIR = ./logs diff --git a/test/mee/testDice.cpp b/test/mee/testDice.cpp index 7d9e4b8..1248ee8 100644 --- a/test/mee/testDice.cpp +++ b/test/mee/testDice.cpp @@ -23,7 +23,7 @@ #include #include #include -#include "Dice.hpp" +#include "mee/Dice.hpp" const uint64_t LENGTH_OF_TEST = 100; //How many times the dice will get rolled * the number of sides