SSet targetType

This commit is contained in:
Tristan B. Kildaire 2020-05-12 21:00:11 +02:00
parent 742cdb5f0c
commit a5bbd7898f
3 changed files with 26 additions and 0 deletions

13
dub.json Normal file
View File

@ -0,0 +1,13 @@
{
"authors": [
"Tristan B. Kildaire"
],
"copyright": "Copyright © 2020, Tristan B. Kildaire",
"dependencies": {
"libester": "~>1.0.8"
},
"description": "A minimal D application.",
"license": "proprietary",
"name": "libmessage",
"targetType": "library"
}

7
dub.selections.json Normal file
View File

@ -0,0 +1,7 @@
{
"fileVersion": 1,
"versions": {
"bformat": "1.0.4",
"libester": "1.0.8"
}
}

6
source/app.d Normal file
View File

@ -0,0 +1,6 @@
import std.stdio;
void main()
{
writeln("Edit source/app.d to start your project.");
}