Unable to build project in MPLAB X IDE

I am trying to use FreeRTOS with Microchip XC8 compiler. I have the MPLAB X IDE installed and the XC8 compiler installed. I have created a new project and I have the following files in the Header Folder of the project:
FreeRTOS.h
FreeRTOSConfig.
list.h
portable.h
portmacro.h
projdefs.h
queue.h
semphr.h
StackMacros.h
task.h
timers.h

And I have in the Source folder the following files:
list.c
port.c
queue.c
tasks.c
main.c

I have chosen the FreeRTOSConfig.h from the Demo/AVR_ATMEGA323/FreeRTOSConfig.h
I have chosen the port.c file from Souce/portable/GCC/atmega323

When I build the project I get the following error:
`…/…/Documents/FreeRTOSv202212.00/FreeRTOS/Source/queue.c:37:22: fatal error: FreeRTOS.h: No such file or directory
#include “FreeRTOS.h”
^
compilation terminated.
make[2]: *** [nbproject/Makefile-default.mk:138: build/default/production/_ext/1109144523/queue.o] Error 1
make[2]: *** Waiting for unfinished jobs…
…/…/Documents/FreeRTOSv202212.00/FreeRTOS/Source/portable/GCC/ATMega323/port.c:41:22: fatal error: FreeRTOS.h: No such file or directory
#include “FreeRTOS.h”
^
compilation terminated.
make[2]: *** [nbproject/Makefile-default.mk:126: build/default/production/_ext/1296830519/port.o] Error 1
…/…/Documents/FreeRTOSv202212.00/FreeRTOS/Source/tasks.c:39:22: fatal error: FreeRTOS.h: No such file or directory
#include “FreeRTOS.h”
^
compilation terminated.
make[2]: *** [nbproject/Makefile-default.mk:144: build/default/production/_ext/1109144523/tasks.o] Error 1
…/…/Documents/FreeRTOSv202212.00/FreeRTOS/Source/list.c:37:22: fatal error: FreeRTOS.h: No such file or directory
#include “FreeRTOS.h”
^
compilation terminated.
make[2]: *** [nbproject/Makefile-default.mk:132: build/default/production/_ext/1109144523/list.o] Error 1
make[2]: Leaving directory ‘/home/mahmoud/MPLABXProjects/FreeRTOS_AVR.X’
make[1]: Leaving directory ‘/home/mahmoud/MPLABXProjects/FreeRTOS_AVR.X’
main.c:8:45: fatal error: FreeRTOS.h: No such file or directory
compilation terminated.
make[2]: *** [nbproject/Makefile-default.mk:150: build/default/production/main.o] Error 1
make[1]: *** [nbproject/Makefile-default.mk:85: .build-conf] Error 2
make: *** [nbproject/Makefile-impl.mk:39: .build-impl] Error 2``

Also the FreeRTOS folder is extracted in the Documents folder of my Fedora Linux.

The code I am trying to build is the following:

#include <FreeRTOS.h> /* Must come first. /
#include “task.h” /
RTOS task related API prototypes. /
#include “queue.h” /
RTOS queue related API prototypes. /
#include “timers.h” /
Software timer related API prototypes. /
#include “semphr.h” /
Semaphore related API prototypes. */
#include <xc.h>

void main(void) {
return;
}

Usually you have to specify the include directories as compiler flags.
Seems you missed to add <FreeRTOS base directory>/include that the compiler can find it.