Skip to content

Commit

Permalink
Add with-lib and without-lib configurations to make linking sqlite3 o…
Browse files Browse the repository at this point in the history
…ptional.
  • Loading branch information
mdparker committed Aug 27, 2015
1 parent 0f0ff50 commit 047fcc4
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
"copyright": "Copyright 2011-15 Nicolas Sicard",
"license": "BSL-1.0",
"targetType": "library",
"libs": ["sqlite3"],
"systemDependencies": "SQLite version >= 3.8.7"
"systemDependencies": "SQLite version >= 3.8.7",
"configurations": [
{
"name": "with-lib",
"libs": ["sqlite3"]
},
{
"name": "without-lib"
}
]
}

0 comments on commit 047fcc4

Please sign in to comment.