You should not put the lib prefix and the .so suffix in the library, so just use:
target_link_libraries(Test Camera)
If your library is not found, you may need to add the directory where the library is located:
link_directories( /home/user/blah )
Note. You copied lib to /usr/bin , but unlike Windows, where the DLL files stored in executables are not the case on Linux, so it will be /usr/lib , not /usr/bin . You can also change the LD_LIBRARY_PATH variable so that your program finds the library in a custom location.
Slava source share