The linker can't resolve NCReportPreviewWindow. You need to add the the framework or directory using the LIBS qmake variable to instruct the linker where the library or framework lives as well as the library name to include, etc.
I don't know where NCReport stuff may live on your system, but here's an example I used to include the Sparkle framework (from the .pro file):
If NCReport is not a framework, then use -L to point to the library directory and -l to specify the library.Qt Code:
LIBS += -F$${PWD}/Sparkle/build/Release/ LIBS += -framework Sparkle -framework AppKitTo copy to clipboard, switch view to plain text mode
Hope that helps.
Bookmarks