Skip to content

Commit 9315bc5

Browse files
committed
package.json: Adjust Dub configuration (exclude Applink by default)
Suggested-by: @MartinNowak <#29 (comment)>
1 parent 385ab50 commit 9315bc5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

dub.json

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@
88
"configurations" : [
99
{
1010
"name": "library",
11-
"targetType": "sourceLibrary",
11+
"excludedSourceFiles": ["deimos/openssl/applink.d"],
12+
"targetType": "sourceLibrary"
13+
},
14+
{
15+
"name": "library-applink",
16+
"targetType": "sourceLibrary"
1217
},
1318
{
1419
"name": "unittest",
20+
"excludedSourceFiles": ["deimos/openssl/applink.d"],
1521
"targetType": "executable",
1622
"sourcePaths": ["deimos/openssl"],
17-
"dflags": ["-main"],
23+
"dflags": ["-main"]
1824
}
1925
]
2026
}

0 commit comments

Comments
 (0)