Closed d11m08y03 closed 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.
client
navbar.c
json_test.c
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.
components/navbar.h
The project should build successfully with all paths properly resolved.
raylib
raygui
After restructuring the
client
folder, the project fails to build due to path issues in several files. For example,navbar.c
andjson_test.c
encounter build errors related to unresolved include paths.One such issue can be seen in
navbar.c
: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:
raylib
andraygui
.navbar.c
andjson_test.c
as examples.