From 23cb3ed30b605b1d58b2dbac2de828a83f87b282 Mon Sep 17 00:00:00 2001 From: Juan Carlos Cornejo Date: Mon, 19 Dec 2011 14:06:50 -0500 Subject: [PATCH] Added a README file with compilation instructions. One thing I did not make clear when I made a change to the password manager is that by default no password manager is enabled. You must enable Kwallet by adding the argument "DEFINES += OC_USE_KWALLET" to the qmake build step. --- owncloud_sync_qt/README | 19 +++++++++++++++++++ owncloud_sync_qt/owncloud_sync.pro | 6 +++++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 owncloud_sync_qt/README diff --git a/owncloud_sync_qt/README b/owncloud_sync_qt/README new file mode 100644 index 000000000..3e03e73db --- /dev/null +++ b/owncloud_sync_qt/README @@ -0,0 +1,19 @@ +== ownCloud Sync Qt == + +1) About onwCloud Sync Qt +2) Requirements +3) Compiling + +2) == REQUIREMENTS == + +3) == COMPILING == + +3a) Using QtCreator + +Open owncloud_sync.pro with QtCreator. Then navigate to the Projects tab. +Select Build Settings. Expand the qmake section (under build steps). If you want +to enable the use of KWallet add "DEFINES += OCS_USE_KWALLET" under additional +arguments (keep the quotes). + + +Then build and run :) diff --git a/owncloud_sync_qt/owncloud_sync.pro b/owncloud_sync_qt/owncloud_sync.pro index c07a157f6..b85bd95a7 100644 --- a/owncloud_sync_qt/owncloud_sync.pro +++ b/owncloud_sync_qt/owncloud_sync.pro @@ -83,7 +83,11 @@ DEPENDPATH += /usr/include OTHER_FILES += \ COPYING-README \ - COPYING-GPL + COPYING-GPL \ + README + + +