dub project/library scaffolding/blueprint/template [was: Re: Bootstrap D template]

2018-03-08 Thread Martin Nowak via Digitalmars-d-announce
On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: Just giving this a different title as I'm having troubles finding this topic. https://github.com/wilzbach/d-bootstrap

Re: Bootstrap D template

2018-02-01 Thread Tony via Digitalmars-d-announce
On Friday, 2 February 2018 at 01:16:50 UTC, Seb wrote: `DEFAULT_GOAL` allows to set an explicit target and keep a everything nicely ordered. Thanks! (didn't even notice that line) Is something not working when you just type `make`? No Or are you just trying to understand how things

Re: Bootstrap D template

2018-02-01 Thread Seb via Digitalmars-d-announce
On Thursday, 1 February 2018 at 23:35:43 UTC, Tony wrote: On Thursday, 1 February 2018 at 22:01:52 UTC, Mike Wey wrote: https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html#Prerequisite-Types Thanks! Couldn't seem to get a search to work. I was hoping the "|" would

Re: Bootstrap D template

2018-02-01 Thread Tony via Digitalmars-d-announce
On Thursday, 1 February 2018 at 22:01:52 UTC, Mike Wey wrote: https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html#Prerequisite-Types Thanks! Couldn't seem to get a search to work. I was hoping the "|" would explain the behavior that I don't understand, but I don't

Re: Bootstrap D template

2018-02-01 Thread Mike Wey via Digitalmars-d-announce
On 01-02-18 22:53, Tony wrote: On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: https://github.com/wilzbach/d-bootstrap Happy bootstrapping! What does "|" do in a makefile? The target depends on `bin` but don't rebuild the target if `bin` is newer than the target.

Re: Bootstrap D template

2018-02-01 Thread Tony via Digitalmars-d-announce
On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: https://github.com/wilzbach/d-bootstrap Happy bootstrapping! What does "|" do in a makefile?

Re: Bootstrap D template

2018-01-30 Thread Seb via Digitalmars-d-announce
On Tuesday, 30 January 2018 at 17:14:15 UTC, Mengu wrote: On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: Have you ever wanted to use D in a project where not everyone had D installed or maybe you wanted to fix the compiler to a specific version? [...] clojure's lein support starter

Re: Bootstrap D template

2018-01-30 Thread Mengu via Digitalmars-d-announce
On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: Have you ever wanted to use D in a project where not everyone had D installed or maybe you wanted to fix the compiler to a specific version? [...] clojure's lein support starter templates. it'd be great if dub did such a thing too.

Re: Bootstrap D template

2018-01-29 Thread Dukc via Digitalmars-d-announce
On Monday, 29 January 2018 at 11:04:19 UTC, Seb wrote: As others who I have shown this have found this useful, I thought it might be helpful to other people (even so it's pretty straight-forward). You're truly becoming the bearer of good news...

Bootstrap D template

2018-01-29 Thread Seb via Digitalmars-d-announce
Have you ever wanted to use D in a project where not everyone had D installed or maybe you wanted to fix the compiler to a specific version? I typically use a simple Makefile in such cases and download my preferred DMD and LDC version. As others who I have shown this have found this useful,