Thread overview
Small rdmd wrapper for windows
Mar 30, 2016
Steve Biedermann
Mar 31, 2016
Steve Biedermann
Mar 31, 2016
Kagamin
Apr 01, 2016
Steve Biedermann
March 30, 2016
Hi,

I made a simple wrapper around rdmd, which can be used to make .d files executable on windows and supports import paths. (A bat and a .d file)

Not really a big announcement, but maybe useful to some of you.

https://github.com/hardliner66/rdmd_windows
March 31, 2016
On Wednesday, 30 March 2016 at 13:26:48 UTC, Steve Biedermann wrote:
> Hi,
>
> I made a simple wrapper around rdmd, which can be used to make .d files executable on windows and supports import paths. (A bat and a .d file)
>
> Not really a big announcement, but maybe useful to some of you.
>
> https://github.com/hardliner66/rdmd_windows

Short Update:
There is now a setup package available:
https://github.com/hardliner66/rdmd_windows/releases/tag/v1.0

Also, there is a setup package, which also installs dmd.
March 31, 2016
Maybe rdmd should parse D_INCLUDE_PATH itself? Then it would work on its own.
April 01, 2016
On Thursday, 31 March 2016 at 10:54:50 UTC, Kagamin wrote:
> Maybe rdmd should parse D_INCLUDE_PATH itself? Then it would work on its own.

You could also use the DFLAGS environment variable for that, but I think it's cleaner to seperate the scripting environment from the normal build environment.