Re: Using systemDependencies in DUB

2018-06-24 Thread Dechcaudron via Digitalmars-d-learn
On Sunday, 24 June 2018 at 12:15:42 UTC, Timoses wrote: What about the "libs" build settings (or "lflags")? (http://code.dlang.org/package-format?lang=json) "libs": "clang" There it was, hidden in plain sight. Thanks for the extra pair of eyes Timoses. I don't know how I missed it.

Re: Using systemDependencies in DUB

2018-06-24 Thread Timoses via Digitalmars-d-learn
On Sunday, 24 June 2018 at 11:44:06 UTC, Dechcaudron wrote: Hi, I'm trying to use dub to compile a quick experiment that uses Deimos libclang bindings, which of course requires linking against an installed libclang. I believe this is what I need to include in dub.json:

Using systemDependencies in DUB

2018-06-24 Thread Dechcaudron via Digitalmars-d-learn
Hi, I'm trying to use dub to compile a quick experiment that uses Deimos libclang bindings, which of course requires linking against an installed libclang. I believe this is what I need to include in dub.json: "systemDependencies": "libclang-6.0" But it just won't link against the lib in