2016-08-08 16:32:34 +08:00
|
|
|
cmake_minimum_required(VERSION 3.1)
|
|
|
|
|
|
|
|
project(memgraph_poc)
|
|
|
|
|
|
|
|
add_executable(poc_astar astar.cpp)
|
|
|
|
target_link_libraries(poc_astar memgraph)
|
2016-08-11 22:32:58 +08:00
|
|
|
target_link_libraries(poc_astar Threads::Threads)
|
|
|
|
target_link_libraries(poc_astar ${fmt_static_lib})
|
2016-08-23 17:58:55 +08:00
|
|
|
|
2016-08-24 00:41:19 +08:00
|
|
|
add_executable(profile profile.cpp)
|
|
|
|
target_link_libraries(profile memgraph)
|
|
|
|
target_link_libraries(profile Threads::Threads)
|
|
|
|
target_link_libraries(profile ${fmt_static_lib})
|
2016-08-26 19:21:42 +08:00
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/poc)
|
|
|
|
|
|
|
|
add_executable(isolation isolation.cpp isolation/header.cpp)
|
|
|
|
target_link_libraries(isolation ${fmt_static_lib})
|
2016-08-28 22:47:13 +08:00
|
|
|
|
|
|
|
add_executable(size_aligment size_aligment.cpp)
|
|
|
|
target_link_libraries(size_aligment memgraph)
|
|
|
|
target_link_libraries(size_aligment Threads::Threads)
|
|
|
|
target_link_libraries(size_aligment ${fmt_static_lib})
|