DUB: can I fully control the output file name?

timepp via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Aug 9 01:49:43 PDT 2016


I'm writing a Total Commander plugin, which has the "wdx" file 
extension, so I wish to let dub generate xxx.wdx directly but not 
xxx.dll.

How can I write my file to achieve this goal?

---

my dub.json:


{
     "name": "tckeyex",
     "targetType": "dynamicLibrary",
     "description": "A minimal D application.",
     "copyright": "Copyright 2016, idtong",
     "authors": ["idtong"],
     "sourceFiles": ["source/app.def"],
     "dependencies": {
         "wind": { "path": "thirdparty/wind" }
     }
}


and my build script:

@echo off

call makeversion.bat

dub build -b release
copy /y tckeyex.dll tckeyex.wdx

dub build -b release -a x86_64
copy /y tckeyex.dll tckeyex.wdx64


More information about the Digitalmars-d-learn mailing list