c527dd44be
This makes the structure of the examples after an 'make install' similar to the one in a 'developer build'. Change-Id: I9120bd741fab332e64e30adc01cefe87e5633454 Reviewed-by: Martin Smith <martin.smith@digia.com>
30 lines
608 B
Prolog
30 lines
608 B
Prolog
SOURCES += main.cpp composition.cpp
|
|
HEADERS += composition.h
|
|
|
|
SHARED_FOLDER = ../shared
|
|
|
|
include($$SHARED_FOLDER/shared.pri)
|
|
|
|
RESOURCES += composition.qrc
|
|
contains(QT_CONFIG, opengl) {
|
|
DEFINES += QT_OPENGL_SUPPORT
|
|
QT += opengl
|
|
}
|
|
QT += widgets
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/painting/composition
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.png *.jpg *.pro *.html
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/widgets/painting/composition
|
|
INSTALLS += target sources
|
|
|
|
|
|
win32-msvc* {
|
|
QMAKE_CXXFLAGS += /Zm500
|
|
QMAKE_CFLAGS += /Zm500
|
|
}
|
|
|
|
wince* {
|
|
DEPLOYMENT_PLUGIN += qjpeg
|
|
}
|