Tobias Pankrath

Results 18 comments of Tobias Pankrath

I tracked it down a bit. In `mir.core` the module `mir.exception` contains ``` private enum HASFORMAT = __traits(compiles, (()@nogc {import mir.format;})()); ``` which makes ldc2 emit a makedependency on 'mir/format.d',...

Since this is only used with `version(mir_test)` can I move the HASFORMAT under that as well?

I think we should close the forums and lead everyone here or directly to forum.dlang.org

@s-ludwig What do you think?

If I move the package to another place and `dub add-local` it there and allow the registries it will 1.) fetch the package again to `/.dub/packages`, but 2.) build the...

I am going now a different route without `dub add-local`. 1. I fetch all packages from a `dub.selections.json` file into a custom file-repository. 2. `HOME=. dub build --skip-registry=all --registray=file://what/ever @`...

I also want to use Dub together with a different build system and `dub build` and `dub describe` make this possible (although it could be more straightforward). What I am...

> @Panke In the [Meson wiki](https://mesonbuild.com/D.html), it is shown how to generate a pkg-config file for a D library, so we can expect that Meson is also able to use...