Remove QDeclarative compatibility module code. Change-Id: Ib24c0c027c899e7eb30b3c8550a483d0d8b2b77f Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
129 lines
4.6 KiB
Plaintext
129 lines
4.6 KiB
Plaintext
sources.files = $$SOURCES $$HEADERS $$RESOURCES $OTHER_FILES *.pro *.pri
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/$${TARGET}
|
|
INSTALLS += sources
|
|
|
|
QT += qml quick
|
|
|
|
SOURCES += $$PWD/qmlapplicationviewer.cpp
|
|
HEADERS += $$PWD/qmlapplicationviewer.h
|
|
INCLUDEPATH += $$PWD
|
|
|
|
defineTest(qtcAddDeployment) {
|
|
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
|
item = item$${deploymentfolder}
|
|
itemsources = $${item}.sources
|
|
$$itemsources = $$eval($${deploymentfolder}.source)
|
|
itempath = $${item}.path
|
|
$$itempath= $$eval($${deploymentfolder}.target)
|
|
export($$itemsources)
|
|
export($$itempath)
|
|
DEPLOYMENT += $$item
|
|
}
|
|
|
|
MAINPROFILEPWD = $$PWD
|
|
|
|
win32 {
|
|
copyCommand =
|
|
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
|
source = $$MAINPROFILEPWD/$$eval($${deploymentfolder}.source)
|
|
source = $$replace(source, /, \\)
|
|
sourcePathSegments = $$split(source, \\)
|
|
target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
|
|
target = $$replace(target, /$, )
|
|
target = $$target/$$last(sourcePathSegments)
|
|
target = $$replace(target, /, \\)
|
|
!isEqual(source,$$target) {
|
|
!isEmpty(copyCommand):copyCommand += &&
|
|
isEqual(QMAKE_DIR_SEP, \\) {
|
|
copyCommand += $(COPY_DIR) \"$$source\" \"$$target\"
|
|
} else {
|
|
source = $$replace(source, \\\\, /)
|
|
target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
|
|
target = $$replace(target, \\\\, /)
|
|
copyCommand += test -d \"$$target\" || mkdir -p \"$$target\" && cp -r \"$$source\" \"$$target\"
|
|
}
|
|
}
|
|
}
|
|
!isEmpty(copyCommand) {
|
|
copyCommand = @echo Copying application data... && $$copyCommand
|
|
copydeploymentfolders.commands = $$copyCommand
|
|
first.depends = $(first) copydeploymentfolders
|
|
export(first.depends)
|
|
export(copydeploymentfolders.commands)
|
|
QMAKE_EXTRA_TARGETS += first copydeploymentfolders
|
|
}
|
|
} else:unix {
|
|
maemo5 {
|
|
desktopfile.files = $${TARGET}.desktop
|
|
desktopfile.path = /usr/share/applications/hildon
|
|
icon.files = $${TARGET}64.png
|
|
icon.path = /usr/share/icons/hicolor/64x64/apps
|
|
} else:!isEmpty(MEEGO_VERSION_MAJOR) {
|
|
desktopfile.path = /usr/share/applications
|
|
icon.files = $${TARGET}80.png
|
|
icon.path = /usr/share/icons/hicolor/80x80/apps
|
|
} else { # Assumed to be a Desktop Unix
|
|
copyCommand =
|
|
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
|
source = $$MAINPROFILEPWD/$$eval($${deploymentfolder}.source)
|
|
source = $$replace(source, \\\\, /)
|
|
macx {
|
|
target = $$OUT_PWD/$${TARGET}.app/Contents/Resources/$$eval($${deploymentfolder}.target)
|
|
} else {
|
|
target = $$OUT_PWD/$$eval($${deploymentfolder}.target)
|
|
}
|
|
target = $$replace(target, \\\\, /)
|
|
target = $$replace(target, /$, )
|
|
sourcePathSegments = $$split(source, /)
|
|
targetFullPath = $$target/$$last(sourcePathSegments)
|
|
!isEqual(source,$$targetFullPath) {
|
|
!isEmpty(copyCommand):copyCommand += &&
|
|
copyCommand += $(MKDIR) \"$$target\"
|
|
copyCommand += && $(COPY_DIR) \"$$source\" \"$$target\"
|
|
}
|
|
}
|
|
!isEmpty(copyCommand) {
|
|
copyCommand = @echo Copying application data... && $$copyCommand
|
|
copydeploymentfolders.commands = $$copyCommand
|
|
first.depends = $(first) copydeploymentfolders
|
|
export(first.depends)
|
|
export(copydeploymentfolders.commands)
|
|
QMAKE_EXTRA_TARGETS += first copydeploymentfolders
|
|
}
|
|
}
|
|
installPrefix = $$[QT_INSTALL_EXAMPLES]/qtmultimedia/$${TARGET}
|
|
!isEmpty(MEEGO_VERSION_MAJOR): installPrefix = /opt/$${TARGET}
|
|
for(deploymentfolder, DEPLOYMENTFOLDERS) {
|
|
item = item$${deploymentfolder}
|
|
itemfiles = $${item}.files
|
|
$$itemfiles = $$eval($${deploymentfolder}.source)
|
|
itempath = $${item}.path
|
|
$$itempath = $${installPrefix}/$$eval($${deploymentfolder}.target)
|
|
export($$itemfiles)
|
|
export($$itempath)
|
|
INSTALLS += $$item
|
|
}
|
|
|
|
!isEmpty(desktopfile.path) {
|
|
export(icon.files)
|
|
export(icon.path)
|
|
export(desktopfile.files)
|
|
export(desktopfile.path)
|
|
INSTALLS += icon desktopfile
|
|
}
|
|
|
|
target.path = $${installPrefix}
|
|
export(target.path)
|
|
INSTALLS += target
|
|
}
|
|
|
|
export (ICON)
|
|
export (INSTALLS)
|
|
export (DEPLOYMENT)
|
|
export (TARGET.EPOCHEAPSIZE)
|
|
export (TARGET.CAPABILITY)
|
|
export (LIBS)
|
|
export (QMAKE_EXTRA_TARGETS)
|
|
}
|
|
|