Another attempt at making d-yaml work with dub.

Creating a symlink in source to the dyaml directory does not actually
result in a symlink when another package grabs d-yaml as a dependency
via dub, and even if it did, it wouldn't work on Windows. So, this moves
the source into source so that it'll actually work, and cdc.d has been
adjusted accordingly so that building with it should still work.
This commit is contained in:
Jonathan M Davis 2013-03-28 21:33:13 -07:00
parent 9f9c96e317
commit 7a1e1ecce3
30 changed files with 1 additions and 2 deletions

2
cdc.d
View file

@ -165,7 +165,7 @@ void main(string[] args)
auto dbg = ["-debug", "-gc"];
auto optimize = ["-O", "-inline", "-release", "-noboundscheck"];
auto profile = ["-O", "-release", "-noboundscheck", "-gc"];
auto lib_src = ["dyaml/", "yaml.d"];
auto lib_src = ["source"];
void compile_(string[] args, string[] files)
{

View file

@ -1 +0,0 @@
../dyaml/