I am wanting to compile an open source project that makes use of OpenCV and part of the make file includes the following lines.
INCS = `pkg-config --cflags opencv`
LIBS = `pkg-config --libs opencv`
I have downloaded OpenCV but cant find the pkg-config executable. It looks like I will need to compile OpenCV and add pkg-config to my path for the make file to work.
What do I need to compile to get the pkg-config executable for Windows 7?