a4cba90e19
Fix Library not loaded/image not found error on application
startup.
With @rpath enabled (commit 6e18f57a
) qmake now requires
a correct target.path in order to emit correct -rpath @loader_path
linker directives.
Change-Id: Ia32b038ad2d64819477be5cd9d1ed36768e2251b
Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
18 lines
474 B
Prolog
18 lines
474 B
Prolog
HEADERS += glwidget.h \
|
|
cube.h
|
|
SOURCES += glwidget.cpp \
|
|
main.cpp \
|
|
cube.cpp
|
|
RESOURCES += pbuffers.qrc
|
|
QT += opengl widgets
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/opengl/legacy/pbuffers
|
|
INSTALLS += target
|
|
|
|
contains(QT_CONFIG, opengles.) {
|
|
contains(QT_CONFIG, angle): \
|
|
warning("Qt was built with ANGLE, which provides only OpenGL ES 2.0 on top of DirectX 9.0c")
|
|
error("This example requires Qt to be configured with -opengl desktop")
|
|
}
|