I'm using the Sparkle framework in Qt. I've added the following to my .pro file:
LIBS += -framework Sparkle
QMAKE_CXX_FLAGS += -F/path/to/the/directory/sparkle.framework/is/in
However I get a compilation error saying "Sparkle/Sparkle.h" cannot be found. Framework headers physically reside in MyFramework.framework/Headers/*.h and are included like MyFramework/*.h
What commands do I need to add to my .pro file to properly include the Sparkle framework headers?