Re: How to pass Compile Time info to source files

2016-08-27 Thread UDW via Digitalmars-d-learn
On Sunday, 28 August 2016 at 02:51:13 UTC, Adam D. Ruppe wrote: The filename passed to the compiler is easy: __FILE__ works in D too, and you can just strip off extra path info with ordinary functions (like std.path's basename or dirname functions). Thanks Adam. Worked like a charm.

Re: How to pass Compile Time info to source files

2016-08-27 Thread Adam D. Ruppe via Digitalmars-d-learn
The filename passed to the compiler is easy: __FILE__ works in D too, and you can just strip off extra path info with ordinary functions (like std.path's basename or dirname functions).

Re: How to pass Compile Time info to source files

2016-08-27 Thread UDW via Digitalmars-d-learn
Whoops. Forgot to mention that I don't need the path truncation just the info that is exposed by the compiler or build system to source files at compile time and how to retrieve it. Thank you in advance :)

How to pass Compile Time info to source files

2016-08-27 Thread UDW via Digitalmars-d-learn
Hi, I would like to know how to do something like this http://stackoverflow.com/questions/237542/learning-the-source-codes-filename-at-compile-time using dmd or dub. Can somebody point me in the direction of the doco for this please because I can't find it :( ty ss