75950664a7
Summary: This diff splits single node and distributed storage from each other. Currently all of the storage code is copied into two directories (one single node, one distributed). The logic used in the storage implementation isn't touched, it will be refactored in following diffs. To clean the working directory after this diff you should execute: ``` rm database/state_delta.capnp rm database/state_delta.hpp rm storage/concurrent_id_mapper_rpc_messages.capnp rm storage/concurrent_id_mapper_rpc_messages.hpp ``` Reviewers: teon.banek, buda, msantl Reviewed By: teon.banek, msantl Subscribers: teon.banek, pullbot Differential Revision: https://phabricator.memgraph.io/D1625
7 lines
293 B
CMake
7 lines
293 B
CMake
set(target_name memgraph__integration__ssl)
|
|
set(tester_target_name ${target_name}__tester)
|
|
|
|
add_executable(${tester_target_name} tester.cpp)
|
|
set_target_properties(${tester_target_name} PROPERTIES OUTPUT_NAME tester)
|
|
target_link_libraries(${tester_target_name} mg-communication mg-io mg-utils)
|