I have been building freerpd
client for Eclipse in Ubuntu 14.04 but an error is popping up :
Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
when I use CMake 2.8. How can I get rid of it?
I have been building freerpd
client for Eclipse in Ubuntu 14.04 but an error is popping up :
Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
when I use CMake 2.8. How can I get rid of it?
Try:
I ran into this nuts problem while compiling opencv. The problem is that CMake is not finding the pkg-config executable.
Fix like this:
1)In ubuntu terminal,
You will get "usr/bin/pkg-config" if it's installed
2) Add
to your Cmake file, or in your build directory, run "cmake-gui" to add it using the GUI. Now, Cmake will find the pkg-config.
https://github.com/vitalif/grive2/issues/74
SOLUTION that worked for me: