Hi to all!
I am trying to migrate my personal projects to v0.12.0. I rely heavily on calling C-Code.
So far I used the "@cImport()" and "@cInclude()" functions inside the Zig code and addIncludePath()/addSystemIncludePath() to add the header include paths.
So far I am able to build the C-Code correctly, however even a simple const c = @cImport({ @cInclude("board.h"); }); is unable to find the "board.h" header. error: 'board.h' file not found. Context: Here board.h is a part of the C-BSP i need for my project. This path is added to the C-compilation step but not resolved in Zig.
How has this behaviour changed? What do I need to add the path in the build system?
Thanks in advance.
Francisco