So, in Visual Studio this process was quite simple - download library, build using MSVC and add it to linker in the project properties. What about CLion?
How do I manage to add, for example Crypto++ library into my project with CLion?
From what I have learned, CLion depends on CMake so I should rather use CMakeLists.txt file to process every dependencies for my project, however in order to use something like find_package(CryptoPP REQUIRED)
there I need to register it somehow?
What are the steps for proper library installation in CLion?