There is definitely something wrong with the path included by the compiler. The preprocessor cannot find the header from the source file you are trying to compile.
I think you could fix this by replacing
#include "AwarenessMoment.h"
from
#include "../sensor/AwarenessMoment.h"
Either this, or changing the compiler includes a path to include the sensor directory and use:
#include <AwarenessMoment>
source share