nextcloud-desktop/owncloud_sync.pro
Juan Carlos Cornejo 929b6afa1a Implemented KWallet password storage for Linux. On Linux they are no
longer saved to the database file.
2012-02-15 08:55:13 +01:00

69 lines
1.5 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2011-10-30T17:04:10
#
#-------------------------------------------------
QT += core gui network xml sql
unix:!macx:!symbian: {
QT += dbus
HEADERS +=
SOURCES +=
INCLUDEPATH += /usr/include/kde4
}
TARGET = owncloud_sync
TEMPLATE = app
SOURCES += main.cpp\
sqlite3_util.cpp \
SyncWindow.cpp \
qwebdav/QWebDAV.cpp \
OwnCloudSync.cpp
HEADERS += sqlite3_util.h \
SyncWindow.h \
qwebdav/QWebDAV.h \
OwnCloudSync.h
FORMS += SyncWindow.ui
INCLUDEPATH += qwebdav/
#INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite
#SOURCES += $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite/sqlite3.c
RESOURCES += \
owncloud_sync.qrc
unix:!symbian:!maemo5:isEmpty(MEEGO_VERSION_MAJOR) {
target.path = /usr/bin
INSTALLS += target
}
unix:!symbian:!maemo5:isEmpty(MEEGO_VERSION_MAJOR) {
desktopfile.files = $${TARGET}.desktop
desktopfile.path = /usr/share/applications
INSTALLS += desktopfile
}
unix:!symbian:!maemo5:isEmpty(MEEGO_VERSION_MAJOR) {
icon.files = owncloud_sync.png
icon.path = /usr/share/icons/hicolor/64x64/apps
INSTALLS += icon
}
unix:!macx:!symbian: LIBS += -L$$PWD/../../../../../usr/lib64/ -lsqlite3
INCLUDEPATH += $$PWD/../../../../../usr/include
DEPENDPATH += $$PWD/../../../../../usr/include
OTHER_FILES += \
COPYING-README \
COPYING-GPL
unix:!macx:!symbian: LIBS += -L/usr/lib64/kde4/devel -lkparts -lkdeui -lkdecore