January 24, 2021 Re: How can I create a Standalone Bundle Portable file application using Dlang? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Marcone | On Sunday, 24 January 2021 at 11:44:04 UTC, Marcone wrote:
> Qt5 dlls
Well, you are out of luck. It is doable, but...
Normally you would likely want to use static libraries and link them into your executable, with Qt license however it becomes problematic in pretty much any case, you still can embed them using import() and unpack to a temporary directory for manual loading without violating the license.
Another problem mentioned before is implicit dynamic loading where you link with special stub .lib file for automatic loading, which is more common in C++ due to symbol name mangling, that will not work because your code won't have a chance to run main().
|
January 24, 2021 Re: How can I create a Standalone Bundle Portable file application using Dlang? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Marcone | On Sunday, 24 January 2021 at 11:44:04 UTC, Marcone wrote:
> On Saturday, 23 January 2021 at 21:26:28 UTC, James Blachly wrote:
>> On 1/20/21 6:50 AM, Marcone wrote:
>>> On Tuesday, 19 January 2021 at 14:20:06 UTC, Imperatorn wrote:
>>>> [...]
>>>
>>> I do not mean resources .res, except if is possible use files inside resources without copy to hard disc and make accessible as it is in local path.
>>
>> I am afraid we are not speaking the same language.
>>
>> Because it sounds like you may not be using "dependencies" as it is conventionally understood in most programming communities, you'll need to give examples.
>>
>> For the record, dependencies are typically either compile-time dependencies or run-time dependencies, and in both cases I think the commonest example would be a library.
>
> Qt5 dlls
Just use the dlls, redist
|
Copyright © 1999-2021 by the D Language Foundation