I am trying to compile my project and my project is using sqlcipher
package. sqlcipher
is cloned and installed in a custom path and I exported this path through $PATH
in the ~/.bashrc
file. After configuration if I type sqlcipher
in the terminal its working fine, but when I try to cmake
my project on the same terminal its giving
-- Checking for one of the modules 'sqlcipher'
CMake Error at /usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:578 (message):
None of the required 'sqlcipher' found
I guess I have to provide this custom path to cmake for finding this package. How to provide custom path to cmake? Where I am doing the mistake?