-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to dub.json for windows build support, README tweaks for newbs (
#4) * refs #2 dub should handle windows and posix library linking, update docs Docs need to include a few details about building and testing. * refs #2 Improve rocksdb dependency documentation * refs #3 Add mods to make example work
- Loading branch information
1 parent
bad9a55
commit f006b9c
Showing
2 changed files
with
36 additions
and
12 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
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 |
---|---|---|
|
@@ -6,6 +6,22 @@ | |
"Andrei Zbikowski <[email protected]>" | ||
], | ||
"targetType": "library", | ||
"libraries": ["rocksdb"], | ||
"lflags": ["-lrocksdb"] | ||
} | ||
"libs-windows-x86_64": [ | ||
"rocksdb-shared" | ||
], | ||
"libs-windows-x86_mscoff": [ | ||
"rocksdb-shared" | ||
], | ||
"libs-posix": [ | ||
"rocksdb" | ||
], | ||
"lflags-windows-x86_64": [ | ||
"-lrocksdb-shared" | ||
], | ||
"lflags-windows-x86_mscoff": [ | ||
"-lrocksdb-shared" | ||
], | ||
"lflags-posix": [ | ||
"-lrocksdb" | ||
] | ||
} |