Skip to content

Commit

Permalink
Merge pull request dlang-community#3 from s-ludwig/master
Browse files Browse the repository at this point in the history
Fix configurations section of package.json.
  • Loading branch information
Nick Sabalausky committed Sep 5, 2013
2 parents dd64cfa + e87012c commit 666d976
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,24 @@

"dflags-dmd": ["-wi"],

"configurations": {
"default": "sdlang",

"sdlang": {
"configurations": [
{
"name": "test",
"targetType": "executable",
"versions": ["SDLang_TestApp"],
"dflags-dmd": ["-ofbin/sdlang"]
},

"unittest": {
{
"name": "library",
"targetType": "library"
},

{
"name": "unittest",
"targetType": "executable",
"versions": ["SDLang_Unittest", "SDLang_Trace"],
"dflags-dmd": ["-ofbin/sdlang-unittest", "-debug", "-gc", "-unittest"]
}
}
]
}

0 comments on commit 666d976

Please sign in to comment.