-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Casey Bodley <[email protected]> Signed-off-by: Matt Benjamin <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
8 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
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
# LRC plugin | ||
# lrc plugin | ||
|
||
set(lrc_srcs | ||
ErasureCodePluginLrc.cc | ||
ErasureCodeLrc.cc | ||
$<TARGET_OBJECTS:erasure_code_objs> | ||
) | ||
|
||
add_library(ec_LRC SHARED ${lrc_srcs}) | ||
add_dependencies(ec_LRC ${CMAKE_SOURCE_DIR}/src/ceph_ver.h) | ||
set_target_properties(ec_LRC PROPERTIES VERSION 1.0.0 SOVERSION 1) | ||
install(TARGETS ec_LRC DESTINATION lib/erasure-code) | ||
add_library(ec_lrc SHARED ${lrc_srcs}) | ||
add_dependencies(ec_lrc ${CMAKE_SOURCE_DIR}/src/ceph_ver.h) | ||
target_link_libraries(ec_lrc json_spirit) | ||
set_target_properties(ec_lrc PROPERTIES VERSION 1.0.0 SOVERSION 1) | ||
install(TARGETS ec_lrc DESTINATION lib/erasure-code) |
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