dom as library too for dub

This commit is contained in:
Adam D. Ruppe 2019-09-10 16:52:36 -04:00
parent 80faa5069f
commit 48d1e3395d
1 changed files with 13 additions and 2 deletions

View File

@ -80,8 +80,19 @@
{
"name": "dom",
"description": "HTML tag soup DOM library",
"targetType": "sourceLibrary",
"sourceFiles": ["dom.d", "characterencodings.d"]
"targetType": "library",
"dependencies": {"arsd-official:characterencodings":"*"},
"importPaths": ["."],
"dflags": ["-mv=arsd.dom=dom.d"],
"sourceFiles": ["dom.d"]
},
{
"name": "characterencodings",
"description": "Character encodings to UTF-8",
"targetType": "library",
"importPaths": ["."],
"dflags": ["-mv=arsd.characterencodings=characterencodings.d"],
"sourceFiles": ["characterencodings.d"]
},
{
"name": "cgi",