Also move RandomKeyGenerator to utils package
This commit is contained in:
parent
abcc766375
commit
e0e9129099
@ -1,3 +1,3 @@
|
||||
add_library(blobstore_ondisk OnDiskBlob.cpp OnDiskBlobStore.cpp RandomKeyGenerator.cpp FileAlreadyExistsException.cpp)
|
||||
add_library(blobstore_ondisk OnDiskBlob.cpp OnDiskBlobStore.cpp FileAlreadyExistsException.cpp)
|
||||
|
||||
target_link_libraries(blobstore_ondisk blobstore_utils boost_filesystem boost_system cryptopp)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#include "OnDiskBlobStore.h"
|
||||
|
||||
#include "OnDiskBlob.h"
|
||||
#include "RandomKeyGenerator.h"
|
||||
#include "blobstore/utils/RandomKeyGenerator.h"
|
||||
|
||||
using std::unique_ptr;
|
||||
using std::string;
|
||||
|
@ -1,2 +1,2 @@
|
||||
add_library(blobstore_utils Data.cpp FileDoesntExistException.cpp)
|
||||
add_library(blobstore_utils Data.cpp RandomKeyGenerator.cpp FileDoesntExistException.cpp)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include <blobstore/implementations/ondisk/RandomKeyGenerator.h>
|
||||
#include "RandomKeyGenerator.h"
|
||||
|
||||
using std::string;
|
||||
|
@ -1,6 +1,6 @@
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "blobstore/implementations/ondisk/RandomKeyGenerator.h"
|
||||
#include "blobstore/utils/RandomKeyGenerator.h"
|
||||
|
||||
using ::testing::Test;
|
||||
|
Loading…
Reference in New Issue
Block a user