Ported build types from CDC to dub.

This commit is contained in:
Ferdinand Majerech 2014-08-01 20:10:03 +02:00
parent a4b92ac5d0
commit d4359f6394
2 changed files with 24 additions and 12 deletions

View file

@ -7,4 +7,10 @@
{
"dyaml": { "version" : "~>0.5.0", "path" : "../../"},
},
"buildTypes":
{
"debug": { "buildOptions": ["debugMode", "debugInfoC"] },
"release": { "buildOptions": ["releaseMode", "optimize", "inline", "noBoundsCheck"] },
"profile": { "buildOptions": ["releaseMode", "optimize", "noBoundsCheck", "debugInfoC"] }
}
}

View file

@ -1,14 +1,20 @@
{
"name": "dyaml",
"description": "YAML parser and emitter",
"authors": [
"Ferdinand Majerech"
],
"libs": [],
"targetType": "staticLibrary",
"importPaths": ["source"],
"license": "Boost 1.0",
"dependencies": {},
"homepage": "https://github.com/kiith-sa/D-YAML",
"copyright": "Copyright © 2011-2014, Ferdinand Majerech"
"name": "dyaml",
"description": "YAML parser and emitter",
"authors": [ "Ferdinand Majerech" ],
"libs": [],
"targetType": "staticLibrary",
"importPaths": ["source"],
"license": "Boost 1.0",
"dependencies": {},
"homepage": "https://github.com/kiith-sa/D-YAML",
"copyright": "Copyright © 2011-2014, Ferdinand Majerech",
"buildTypes":
{
"debug": { "buildOptions": ["debugMode", "debugInfoC"] },
"release": { "buildOptions": ["releaseMode", "optimize", "inline", "noBoundsCheck"] },
"profile": { "buildOptions": ["releaseMode", "optimize", "noBoundsCheck", "debugInfoC"] },
},
}