Single exe vibe.d app
evilrat via Digitalmars-d-learn
digitalmars-d-learn at puremagic.com
Wed Apr 5 05:42:23 PDT 2017
On Wednesday, 5 April 2017 at 12:13:38 UTC, Satoshi wrote:
> Hi,
> How can I build single exe application with vibe.d (windows)?
> now it require zlib.dll, libeay32.dll and ssleay32.dll
>
> But I need it as single app.
btw, if all you need is to ship it as a single file and don't
care if it writes anything, you can probably compile-in those
.dll's to your .exe as string with D import statement and write
them on disk from static module ctor (static shared this{} at
module scope) when it launched.
More information about the Digitalmars-d-learn
mailing list