memgraph/poc/CMakeLists.txt
2016-08-23 17:41:19 +01:00

14 lines
413 B
CMake

cmake_minimum_required(VERSION 3.1)
project(memgraph_poc)
add_executable(poc_astar astar.cpp)
target_link_libraries(poc_astar memgraph)
target_link_libraries(poc_astar Threads::Threads)
target_link_libraries(poc_astar ${fmt_static_lib})
add_executable(profile profile.cpp)
target_link_libraries(profile memgraph)
target_link_libraries(profile Threads::Threads)
target_link_libraries(profile ${fmt_static_lib})