forked from b1naryth1ef/rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refs b1naryth1ef#2 dub should handle windows and posix library linkin…
…g, update docs Docs need to include a few details about building and testing.
- Loading branch information
1 parent
bad9a55
commit ca29c2a
Showing
2 changed files
with
30 additions
and
4 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" | ||
] | ||
} |