Use "silly" library for unittest

This commit is contained in:
haru-s 2023-02-02 16:57:41 +09:00
parent ed654b5df6
commit a16f1864ab

View file

@ -2,9 +2,6 @@
"authors": [
"various"
],
"dependencies": {
"undead": "~>1.1.8"
},
"description": "D Forms Library, or DFL, is a Win32 windowing library for the D language.",
"license": "in license.txt",
"name": "dfl",
@ -51,11 +48,18 @@
"configurations": [
{
"name" : "library",
"targetType": "staticLibrary"
"targetType": "staticLibrary",
"dependencies": {
"undead": "~>1.1.8"
}
},
{
"name" : "unittest",
"targetType": "staticLibrary"
"targetType": "staticLibrary",
"dependencies": {
"undead": "~>1.1.8",
"silly": "~>1.2.0-dev.2"
}
}
]
}