embedding a library in Windows
Kagamin via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Mon Jan 30 07:08:13 PST 2017
On Monday, 30 January 2017 at 13:29:20 UTC, Nestor wrote:
> OK, and in case I have a sqlite3.a file, what parameters should
> I pass to dmd to build a static application?
If it's an import library, you will link against the dll
dynamically (the library only contains bindings to dll). If it's
a static library with sqlite code, you will link that code
statically.
More information about the Digitalmars-d-learn
mailing list