X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2FCMakeLists.txt;h=f7efc4629cc95bc223fcd027c2889ffee7387d46;hb=c4eb30d2e6e577e424b83d4b5180d48af74e3009;hp=2dfe8ef7787bd132ebf3165b34db0c04e1a76546;hpb=544dad3ef87acd87be934b09e861baa5c2406686;p=bluesky.git diff --git a/bluesky/CMakeLists.txt b/bluesky/CMakeLists.txt index 2dfe8ef..f7efc46 100644 --- a/bluesky/CMakeLists.txt +++ b/bluesky/CMakeLists.txt @@ -4,14 +4,14 @@ link_directories("${LIBS3_BUILD_DIR}/lib" ${KVSTORE_DIR}) add_library(bluesky SHARED cache.c crypto.c debug.c dir.c file.c init.c inode.c serialize.c - store.c store-kv.cc store-s3.c util.c) + store.c store-bdb.c store-kv.cc store-multi.c store-s3.c util.c) add_executable(bluesky-test main.c) set(CMAKE_C_FLAGS "-Wall -std=gnu99 ${CMAKE_C_FLAGS}") set(INSTALL_RPATH_USE_LINK_PATH 1) include_directories(${GLIB_INCLUDE_DIRS}) -target_link_libraries(bluesky ${GLIB_LIBRARIES} gcrypt s3 kvclient) +target_link_libraries(bluesky ${GLIB_LIBRARIES} db gcrypt s3 kvclient) target_link_libraries(bluesky-test bluesky ${GLIB_LIBRARIES}) #set_target_properties(bluesky PROPERTIES LINK_INTERFACE_LIBRARIES "")