Skip to content

Commit

Permalink
package.json: Adjust Dub configuration (exclude Applink by default)
Browse files Browse the repository at this point in the history
Suggested-by: @MartinNowak <#29 (comment)>
  • Loading branch information
CyberShadow committed Aug 18, 2020
1 parent 3e60359 commit 45331f5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@
"configurations" : [
{
"name": "library",
"targetType": "sourceLibrary",
"excludedSourceFiles": ["deimos/openssl/applink.d"],
"targetType": "sourceLibrary"
},
{
"name": "library-applink",
"targetType": "sourceLibrary"
},
{
"name": "unittest",
"excludedSourceFiles": ["deimos/openssl/applink.d"],
"targetType": "executable",
"sourcePaths": ["deimos/openssl"],
"dflags": ["-main"],
"dflags": ["-main"]
}
]
}

0 comments on commit 45331f5

Please sign in to comment.