From 150f22ffef3bc1f314f1c51305eda05aadb0a7c8 Mon Sep 17 00:00:00 2001
From: Kruno Tomola Fabro <krunotf@memgraph.io>
Date: Fri, 9 Sep 2016 21:01:12 +0100
Subject: [PATCH] Fixed cmakelist now poc/* builds.

---
 poc/CMakeLists.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/poc/CMakeLists.txt b/poc/CMakeLists.txt
index 6a4ad8add..5f8d5ec5d 100644
--- a/poc/CMakeLists.txt
+++ b/poc/CMakeLists.txt
@@ -10,18 +10,19 @@ 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})
+target_link_libraries(poc_astar ${yaml_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})
+target_link_libraries(profile ${yaml_static_lib})
 
 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})
-
-
+target_link_libraries(size_aligment ${yaml_static_lib})
 
 add_executable(isolation isolation.cpp isolation/header.cpp)
 target_link_libraries(isolation ${fmt_static_lib})