I have a number of configurations in sub-directories that are used to build a per-architecture binary blob containing arch-specific assets.
All the build steps depend on some common code.
Is it OK to @import a common-code Zig file using an upward relative path? ( @import(../../path/to/common/code) )
Or is this a code smell? 👃