Examples now use dub instead of Makefiles.

This commit is contained in:
Ferdinand Majerech 2014-08-01 17:06:23 +02:00
parent 264b8b9d1e
commit 0dbe638296
15 changed files with 70 additions and 35 deletions

View file

@ -1,5 +0,0 @@
main:
dmd -w -I../../source -L-L../../ -L-ldyaml main.d
clean:
rm main main.o

View file

@ -0,0 +1,10 @@
{
"name": "getting-started",
"targetType": "executable",
"sourceFiles": ["main.d"],
"mainSourceFile": "main.d",
"dependencies":
{
"dyaml": { "version" : "~>0.5.0", "path" : "../../"},
},
}