I am trying (similar to here: Zig module not visible after import) to import the zig-clap module as provided in the readme, but when I try to compile the program with
zig run main.zig
I get the error message:
main.zig:2:22: error: no module named ‘clap’ available within module main
const clap = @import(“clap”);
I followed the example in the readme file and it should work.
EDIT:
I found out, that clap is not actually in my project…, it is located (for some reason) in the AppData folder of Windows (in the zig directory), but it is still not working
EDIT-2:
The issue should be, that i get an error when I try to fetch the dependency…, I think cloning the repo is the solution
EDIT-3:
It is not the solution…, I’m lost now
EDIT-4:
I found out, that the issue is within the package itself because of this error:
..\zig-clap\build.zig.zon:2:14: error: expected string literal
.name = .clap,
The zig run command builds and runs a single Zig file. If you want a module included you can add it with zig run command line arguments, but likely you just want to use zig build with a build.zig file as others are suggesting.
I solved it, version 0.9.1 is not working even tho it should, but version 0.9.0 is working just fine, so there is an issue within the module itself I think
The error I got with 0.9.1 was:
…\zig-clap\build.zig.zon:2:14: error: expected string literal
.name = .clap,
zig doesn’t use system tools, there is tar support in std, and you’re downloading the src code.
so unless they omitted windows code in the tar it should work