Ported build types from CDC to dub.
This commit is contained in:
parent
a4b92ac5d0
commit
d4359f6394
|
@ -7,4 +7,10 @@
|
||||||
{
|
{
|
||||||
"dyaml": { "version" : "~>0.5.0", "path" : "../../"},
|
"dyaml": { "version" : "~>0.5.0", "path" : "../../"},
|
||||||
},
|
},
|
||||||
|
"buildTypes":
|
||||||
|
{
|
||||||
|
"debug": { "buildOptions": ["debugMode", "debugInfoC"] },
|
||||||
|
"release": { "buildOptions": ["releaseMode", "optimize", "inline", "noBoundsCheck"] },
|
||||||
|
"profile": { "buildOptions": ["releaseMode", "optimize", "noBoundsCheck", "debugInfoC"] }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
30
package.json
30
package.json
|
@ -1,14 +1,20 @@
|
||||||
{
|
{
|
||||||
"name": "dyaml",
|
"name": "dyaml",
|
||||||
"description": "YAML parser and emitter",
|
"description": "YAML parser and emitter",
|
||||||
"authors": [
|
"authors": [ "Ferdinand Majerech" ],
|
||||||
"Ferdinand Majerech"
|
"libs": [],
|
||||||
],
|
"targetType": "staticLibrary",
|
||||||
"libs": [],
|
"importPaths": ["source"],
|
||||||
"targetType": "staticLibrary",
|
"license": "Boost 1.0",
|
||||||
"importPaths": ["source"],
|
"dependencies": {},
|
||||||
"license": "Boost 1.0",
|
"homepage": "https://github.com/kiith-sa/D-YAML",
|
||||||
"dependencies": {},
|
"copyright": "Copyright © 2011-2014, Ferdinand Majerech",
|
||||||
"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"] },
|
||||||
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue