liblzma bindings in dub
John Colvin via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Wed Sep 17 15:49:00 PDT 2014
On Wednesday, 17 September 2014 at 21:05:07 UTC, Freddy wrote:
> How do you include liblzma
> bindings(https://github.com/D-Programming-Deimos/liblzma) in a
> dub project?
as it's not on code.dlang.org, you will have to do it locally:
cd yourChoiceofDirectory
git clone https://github.com/D-Programming-Deimos/liblzma.git
dub add-local liblzma
# or
dub add-path .
then it should be available as a dependency from your dub project.
More information about the Digitalmars-d-learn
mailing list