Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[transfer-engine] Introduces TransferModel QML component. Cleaning th…
…e database from failed syncs.

Removed references to files, which are not in git.
  • Loading branch information
Marko Mattila committed May 5, 2014
1 parent f3731ef commit 4c5e397
Show file tree
Hide file tree
Showing 13 changed files with 964 additions and 11 deletions.
38 changes: 38 additions & 0 deletions declarative/declarative.pro
@@ -0,0 +1,38 @@
TEMPLATE = lib
QT += dbus sql
CONFIG += qt plugin

INCLUDEPATH += ../lib
LIBS += -lnemotransferengine-qt5 -L../lib

TARGET = declarativetransferengine
QT += qml

uri = org.nemomobile.transferengine


# Input
SOURCES += \
plugin.cpp \
declarativetransfermodel.cpp

HEADERS += \
synchronizelists_p.h \
declarativetransfermodel.h

OTHER_FILES = qmldir *.qml *.js

!equals(_PRO_FILE_PWD_, $$OUT_PWD) {
copy_qmldir.target = $$OUT_PWD/qmldir
copy_qmldir.depends = $$_PRO_FILE_PWD_/qmldir
copy_qmldir.commands = $(COPY_FILE) \"$$replace(copy_qmldir.depends, /, $$QMAKE_DIR_SEP)\" \"$$replace(copy_qmldir.target, /, $$QMAKE_DIR_SEP)\"
QMAKE_EXTRA_TARGETS += copy_qmldir
PRE_TARGETDEPS += $$copy_qmldir.target
}

target.path = $$[QT_INSTALL_QML]/$$replace(uri, \\., /)

qmldir.files = qmldir *.qml *.js
qmldir.path = $$target.path

INSTALLS += target qmldir

0 comments on commit 4c5e397

Please sign in to comment.