project(MOVE)
 
find_package(YARP REQUIRED)
 
add_executable(move main.cpp)
 
# we now add the YARP libraries to our project.
target_link_libraries(move ${YARP_LIBRARIES})

