-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dub.json and add dub.selections.json
Removed subpackages and unittest config
- Loading branch information
Showing
2 changed files
with
29 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,44 @@ | ||
{ | ||
"name": "openmethods", | ||
"description": "Fast, open multi-methods for D", | ||
"authors": [ | ||
"Jean-Louis Leroy" | ||
"Jean-Louis Leroy", | ||
"Ahmet Sait", | ||
], | ||
"copyright": "Copyright © 2017-2020, Jean-Louis Leroy", | ||
"license": "BSL-1.0", | ||
"targetType": "library", | ||
"targetPath": "bin/$BUILD_TYPE-$PLATFORM-$ARCH", | ||
"dependencies": { | ||
"bolts": "1.8.1", | ||
}, | ||
"importPaths": [ | ||
"source", | ||
], | ||
"sourcePaths": [ | ||
"source", | ||
], | ||
"buildTypes": { | ||
"x": { | ||
"buildOptions": [ | ||
"debugMode", | ||
"debugInfo", | ||
"unittests" | ||
"unittests", | ||
], | ||
"debugVersions": [ | ||
"explain" | ||
] | ||
"explain", | ||
], | ||
}, | ||
"xtc": { | ||
"buildOptions": [ | ||
"debugMode", | ||
"debugInfo", | ||
"unittests" | ||
"unittests", | ||
], | ||
"debugVersions": [ | ||
"explain", | ||
"traceCalls" | ||
] | ||
} | ||
}, | ||
"configurations": [ | ||
{ | ||
"dflags": [ | ||
"-mixin=mixins.txt" | ||
"traceCalls", | ||
], | ||
"name": "unittest", | ||
"targetType": "library" | ||
} | ||
], | ||
"copyright": "Copyright © 2017-2020, Jean-Louis Leroy", | ||
"dependencies": { | ||
"bolts": "1.8.1" | ||
}, | ||
}, | ||
"description": "fast, open multi-methods for D", | ||
"importPaths": [ | ||
"source/" | ||
], | ||
"license": "Boost Software License 1.0", | ||
"name": "openmethods", | ||
"sourcePaths": [ | ||
"source/" | ||
], | ||
"subPackages": [ | ||
"./examples/acceptnovisitors", | ||
"./examples/adventure", | ||
"./examples/matrix", | ||
"./examples/next", | ||
"./examples/rolex", | ||
"./examples/synopsis", | ||
"./examples/whytheunderscore", | ||
"./benchmarks/runtimemetrics", | ||
"./tests" | ||
], | ||
"targetType": "library" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"fileVersion": 1, | ||
"versions": { | ||
"bolts": "1.8.1" | ||
} | ||
} |