I want to use a c library, in this case GLFW in my zig project.
I imported the main headerfile into my src/main.zig file like this ```js
const glfw = @cImport(
@cInclude("../lib/glfw/include/glfw3.h")
);
but i think i also have to do some setup in my build.zig file to use a library that uses cmake and I dont have any Idea how to do that. And I wasn't able to find some good examples online...