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:
parent
9f9c96e317
commit
7a1e1ecce3
2
cdc.d
2
cdc.d
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../dyaml/
|
Loading…
Reference in a new issue