if (yamlcpp_FOUND)
	find_package(Curses)
	if (CURSES_FOUND)
		add_executable(eval_solution eval_solution.cpp)
		target_link_libraries(eval_solution pointmatcher ${NABO_LIBRARY} ${EXTRA_LIBS} ${Boost_LIBRARIES} ${CURSES_LIBRARY})
	else(CURSES_FOUND)
		message("-- ncurses not found, disabling evaluation")
	endif(CURSES_FOUND)
endif (yamlcpp_FOUND)