2022-01-21 17:22:36 +08:00
|
|
|
find_package(gflags REQUIRED)
|
|
|
|
|
2021-01-16 02:04:44 +08:00
|
|
|
add_executable(memgraph__e2e__replication__constraints constraints.cpp)
|
2021-01-21 22:47:56 +08:00
|
|
|
target_link_libraries(memgraph__e2e__replication__constraints gflags mgclient mg-utils mg-io Threads::Threads)
|
2021-01-16 02:04:44 +08:00
|
|
|
|
2023-10-05 22:58:39 +08:00
|
|
|
add_executable(memgraph__e2e__replication__indices indices.cpp)
|
|
|
|
target_link_libraries(memgraph__e2e__replication__indices gflags mgclient mg-utils mg-io Threads::Threads)
|
|
|
|
|
2021-01-16 02:04:44 +08:00
|
|
|
add_executable(memgraph__e2e__replication__read_write_benchmark read_write_benchmark.cpp)
|
2021-01-21 22:47:56 +08:00
|
|
|
target_link_libraries(memgraph__e2e__replication__read_write_benchmark gflags json mgclient mg-utils mg-io Threads::Threads)
|
2022-05-21 11:17:59 +08:00
|
|
|
|
|
|
|
copy_e2e_python_files(replication_show common.py)
|
|
|
|
copy_e2e_python_files(replication_show conftest.py)
|
|
|
|
copy_e2e_python_files(replication_show show.py)
|
2022-06-20 18:28:42 +08:00
|
|
|
copy_e2e_python_files(replication_show show_while_creating_invalid_state.py)
|
2023-12-01 20:38:48 +08:00
|
|
|
copy_e2e_python_files(replication_show edge_delete.py)
|
2022-06-20 18:28:42 +08:00
|
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." memgraph.py)
|
|
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." interactive_mg_runner.py)
|
2022-07-08 16:47:18 +08:00
|
|
|
copy_e2e_python_files_from_parent_folder(replication_show ".." mg_utils.py)
|