d11m08y03 / Retail

Project for Software Engineering module
3 stars 2 forks source link

Build failure after folder restructuring - Path issues in multiple files #4

Closed d11m08y03 closed 1 month ago

d11m08y03 commented 1 month ago

After restructuring the client folder, the project fails to build due to path issues in several files. For example, navbar.c and json_test.c encounter build errors related to unresolved include paths.

One such issue can be seen in navbar.c:

#include <raylib.h>
#include <stdlib.h>

#include "components/navbar.h"
#include "config.h"
#include "extern/raygui.h"
#include "pages/home.h"
#include "pages/pages.h"
#include "pages/products.h"

The paths to headers such as components/navbar.h and the files in the pages directory are no longer resolved correctly.

Expected Behavior:

The project should build successfully with all paths properly resolved.

Additional Information: