Hi Guys,

I am having some trouble with using the Poppler libs(for PDF rendering) with my QT Creator project in Mac 10.6.8.

I downloaded the poppler source and configured things with the help of cmake. Then I ran "make install" to install the poppler libraries. In my QT Creator
project I have the below lines as code :

QString test("/Users/***/Desktop/WhiteBox.pdf");
Poppler:ocument* temp =Poppler:ocument::load(test);

below is the error I get while compiling:

Undefined symbols for architecture x86_64:
"Poppler:ocument::load(QString const&, QByteArray const&, QByteArray const&)", referenced from:
MainWindow::MainWindow(QWidget*)in mainwindow.o
ld: symbol(s) not found for architecture x86_64
make: Leaving directory `/Users/****/PDFRenderExample-build-desktop'
collect2: ld returned 1 exit status
make: *** [PDFRenderExample.app/Contents/MacOS/PDFRenderExample] Error 1
The process "/usr/bin/make" exited with code 2.
Error while building project PDFRenderExample (target: Desktop)
When executing build step 'Make'



It would be really helpful if someone could point out the mistake I am doing and advice me with a solution for the same.

Thanks in advance!!!