Recommend: IDE and GUI library

thedeemon via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Mar 1 12:00:32 PST 2017


On Wednesday, 1 March 2017 at 17:37:02 UTC, XavierAP wrote:
> I'm trying now DlangUI on Visual D. I'm getting different 
> errors from missing Derelict library dependencies...

If you're building your app with VisualD (as opposed to invoking 
dub externally), make sure you've set up import paths in project 
settings properly. Two paths must be there: one like
C:\Users\...\AppData\Roaming\dub\packages\dlangui-0.9.46\dlangui\src\
and the other like
C:\Users\...\AppData\Roaming\dub\packages\dlangui-0.9.46\dlangui\3rdparty\
and in linker tab of project settings make sure you link to the 
dlangui.lib you should have built beforehand.
Also, if you use "minimal" configuration of DLangUI (which I 
recommend) you can remove mentions of SDL and GL from its 
dependencies in its dub.json, this way there are less things for 
compiler and VisualD to look for.


More information about the Digitalmars-d-learn mailing list