I am using CMake for my application named Agent. After configuring and generating binaryfiles, the application was compiled using the make command and Agent.exe was created in the build directory.Then I executed the application from terminal using ./Agent command. It worked.
Then I had created Debian package for the application using CPack and efsagent.deb was created. But while trying to install the package using the command dpkg -i efsagent.deb, it fails with following error:
`dpkg: dependency problems prevent configuration of efsagent:
efsagent depends on libssl (>= 0.9.8); however:Package libssl is not installed.`
But libssl is already installed in my system and libssl.so.0.9.8 is in /usr/local/ssl/lib path..
How can I link the dependencies to the generated package??