fix build and installation of queuedcustomtype example
it was not built at all (and didn't build with qt in a namespace), and consequently was not installed as well. Change-Id: I24d8ac4dd5d70927c262ad6336e5ee32a0fd003a Reviewed-by: Olivier Goffart (Woboq GmbH) <ogoffart@woboq.com>
This commit is contained in:
parent
5bbbea4c83
commit
619ab8080d
@ -8,7 +8,7 @@ SOURCES = main.cpp \
|
||||
QT += widgets
|
||||
|
||||
# install
|
||||
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/threads/mandelbrot
|
||||
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/threads/queuedcustomtype
|
||||
INSTALLS += target
|
||||
|
||||
|
||||
|
@ -44,8 +44,10 @@
|
||||
#include <QWidget>
|
||||
#include "renderthread.h"
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QLabel;
|
||||
class QPushButton;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
//! [Window class definition]
|
||||
class Window : public QWidget
|
||||
|
@ -4,4 +4,6 @@ CONFIG += no_docs_target
|
||||
SUBDIRS = semaphores \
|
||||
waitconditions
|
||||
|
||||
qtHaveModule(widgets): SUBDIRS += mandelbrot
|
||||
qtHaveModule(widgets): SUBDIRS += \
|
||||
mandelbrot \
|
||||
queuedcustomtype
|
||||
|
Loading…
Reference in New Issue
Block a user