From 5f2cd7fae8218d1409d6c5c98d7dd29db1783d19 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Sat, 3 Jul 2021 12:26:55 -0400 Subject: [PATCH] Fixed second linux compile bug --- makefile | 2 +- test/mee/testDice.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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