diff --git a/README.md b/README.md index 0dbe68a..01ac67c 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,21 @@ Other examples can be found in the [examples](examples) folder. ## Integration -TODO +```cmake +cmake_minimum_required(VERSION 3.14) +project(application) + +include(FetchContent) +FetchContent_Declare( + libftp + GIT_REPOSITORY https://github.com/deniskovalchuk/ftp-client.git + GIT_TAG master +) +FetchContent_MakeAvailable(libftp) + +add_executable(application main.cpp) +target_link_libraries(application ftp::ftp) +``` ## Building