I am trying to include in my main.zig c code
I have added the following to my build.zig
exe.addCSourceFile(.{ .file = b.path("csrc/cbrr.c"), .flags = &.{ "-std=c99", "-O2" } });
but when I am trying to import compiler can resolve that reference, what am I doing wrong, is it actually possible?
const cbrr = @cImport({
@cInclude("csrc/cbrr.c");
});