Dylan Baker

Results 375 comments of Dylan Baker

You're right! I'm not sure how I missed adding that. the latest version has that tested added.

Yeah, i think it should be running them, but it doesn't. I'm not sure if it's a GitHub configuration issue or something in the Meson. I haven't had time to...

Meson developer here, we likely can provide at least most of the data that `cargo metadata` does and pass that via the `--metadata` flag if that was what was required,...

I'm still having problems with this with more than one python module, they all want to write into easy-install.pth, but only the first one is allowed to because it's a...

Thanks. I did find that option, but I hadn't thought to add setuptools.pth as well, but I'm sure I'll run into that before too much longer.

Okay, I've been thinking about this problem a lot. @jpakkane what if we allowed `custom_target` to write directories in its private directory?

Yes, that would allow directories as part of the output, in general with custom targets you don't want to pass -I with custom_target anyway, meson will generate a -I for...

Well, in my case I have a parameter of `bareword &+ bareword &+ any`, so I really don't want to skipArgs, as two of the arguments do have clear types....

Ahh, I forgot you can use link syntax inside a `` macro. Yeah, that does make for a rather ambiguous grammar. You'd almost have to parse that recursively, since as...

no, I think `text` covers it. I thought that text was `bareword | string`. Any might still be useful, but for the case I had in mind `text` is suffcient...