doc(Crypto): Fix error in find_package example #3088

This commit is contained in:
Alex Fabijanic 2022-06-02 08:24:21 -05:00
parent 91c7392ec6
commit db0e012f3f

View File

@ -461,7 +461,7 @@ or
To use POCO C++ Libraries in your cmake project, add following line in your project for example to use crypto:
find_package(Poco REQUIRED PocoCrypto)
find_package(Poco REQUIRED Crypto)
....
target_link_libraries(yourTargetName ... Poco::Crypto)