Re: Specify an entire directory tree for string imports

2015-03-30 Thread Vladimir Panteleev via Digitalmars-d-learn
On Monday, 30 March 2015 at 14:01:54 UTC, Alex Parrill wrote: On Monday, 30 March 2015 at 02:51:56 UTC, Baz wrote: It's a DMD Windows bug. It's just been reported 2 days ago: https://issues.dlang.org/show_bug.cgi?id=14349 so nothing wrong from you side. Ok, glad to see it's a bug and not a

Re: Specify an entire directory tree for string imports

2015-03-30 Thread Alex Parrill via Digitalmars-d-learn
On Monday, 30 March 2015 at 02:51:56 UTC, Baz wrote: It's a DMD Windows bug. It's just been reported 2 days ago: https://issues.dlang.org/show_bug.cgi?id=14349 so nothing wrong from you side. Ok, glad to see it's a bug and not a (fairly limiting) feature. I might take a stab at fixing it, i

Re: Specify an entire directory tree for string imports

2015-03-29 Thread Rikki Cattermole via Digitalmars-d-learn
On 30/03/2015 3:51 p.m., Baz wrote: On Monday, 30 March 2015 at 02:13:22 UTC, Alex Parrill wrote: I have a directory structure like this: . | test.d | \---test | test1.txt | \---subfolder test2.txt I am running test.d using this comma

Re: Specify an entire directory tree for string imports

2015-03-29 Thread Baz via Digitalmars-d-learn
On Monday, 30 March 2015 at 02:13:22 UTC, Alex Parrill wrote: I have a directory structure like this: . | test.d | \---test | test1.txt | \---subfolder test2.txt I am running test.d using this command:

Specify an entire directory tree for string imports

2015-03-29 Thread Alex Parrill via Digitalmars-d-learn
I have a directory structure like this: . | test.d | \---test | test1.txt | \---subfolder test2.txt I am running test.d using this command: rdmd -Jtest test.d I can do `import("test1.txt")` from