Hi everyone!
I have a multi-project that consists of 3 projects:
- libA
- exeA
- exeB
Both exeA and exeB depend on libA. libA also depends on some packages from michal-z/zig-gamedev. I want libA to be a shared library that exeA and exeB link against.
Normally with cmake I'd have a build file sitting in the root of each project directory as well as the parent directory. Should I do something similar here? Could you provide an example?
All of the projects are pure zig btw