Hi,

I have an executable projet that depend on a static library project. They are all in the same github repo:
https://github.com/bdeligny/DQuick.git on branch "dub"

My two package.json are:

Executable:
{

"name": "image",
"targetType": "executable",
"version" : "~master",
"sourcePaths": ["./"],
"importPaths": ["./"],
"dependencies": {
	"libdquick": {"version": "~master", "path": "../../dquick"},
},			

},

Library:
{

"name": "libdquick",
"version" : "~master",
"sourcePaths": ["./"],
"importPaths": ["./"],
"excludedSourceFiles": ["etc/derelict/build/build.d"],
"stringImportPaths": ["renderer2D/openGL"],
"buildRequirements": ["allowWarnings"],

}

But i get this error:
Error: conflicting Ddoc and obj generation options

If i check the dmd command line called by dub with -v option i get:
dmd -of.dub\build\application-debug-x86-dmd-DA39A3EE5E6B4B0D3255BFEF95601890AFD80709\image.exe -c -of.dub\build\application-debug-x86-dmd-DA39A3EE5E6B4B0D3255BFEF95601890AFD80709\image.obj -debug -g -wi -version=Haveimage -version=Havelibdquick -I.\ -I....\dquick -J....\dquick\renderer2D\openGL main.d ....\dquick\algorithms\atlas.d ....\dquick\algorithms\scheduler.d and then all the d files

Thanks in advance.