Skip to content

Commit

Permalink
Add integration example
Browse files Browse the repository at this point in the history
  • Loading branch information
deniskovalchuk committed Sep 13, 2023
1 parent e229dd4 commit af6a530
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit af6a530

Please sign in to comment.