GUI library for D

Andrej Mitrovic andrej.mitrovich at gmail.com
Mon Apr 4 20:12:27 PDT 2011


On 4/5/11, Nick Sabalausky <a at a.a> wrote:
> GCC, really? Even on Windows? (GCC on Windows is such a nightmare.)
>
>> http://www.dsource.org/projects/qtd/wiki/BuildWindows

Just download and run it and don't worry about it too much:
http://sourceforge.net/projects/mingw/files/Automated%20MinGW%20Installer/mingw-get-inst/mingw-get-inst-20110316/mingw-get-inst-20110316.exe/download

As long as you can invoke gcc.exe, you're set. The problem-makers are
those cygwin dependent libs, but QtD works fine without any cygwin
shenanigans.

Oh btw, I just found a cool trick today to figure out in what
directory an app resides. E.g. if you invoke "gcc.exe" and you want to
know where it's installed. Add this batch file to your path:

@setlocal
@set P2=.;%PATH%
@for %%e in (%PATHEXT%) do @for %%i in (%~n1%%e) do @if NOT
"%%~$P2:i"=="" echo %%~$P2:i

Then just run `where myapp.exe`, and it shows you the full path.


More information about the Digitalmars-d mailing list