I am building a tiny engine on top of raylib, and I am confused about how I would need to link libs.
currently my structure is as follows:
engine/
- libs/
--- raylib/
--- app/
--- ecs/
--- render/
- src/
both app as well as render are zig-libs, and both depend on raylib.
but adding @import("../raylib") doesn't seem to be allowed.
Do I need to clone raylib in both app as well as render folders? Or is there another way?