Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2015-07-13 15:35:19 +0300
committerOlivier Goffart <ogoffart@woboq.com>2015-07-13 15:35:19 +0300
commit4dbe0693df553b091c1fe4022d3d8154494cfb66 (patch)
treed56050194e2c7430dc450fc642093bd14010ea86 /test/CMakeLists.txt
parenta8fb94f51b9a60cb182794dfb9e0dd91f37b3759 (diff)
FolderMan::checkPathValidityForNewFolder
factorize the function to check the validity of a new folder out of the folder wizard to the FolderMan. There is even a test for it now. That way we can also use it in the normal wizard
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r--test/CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index ef64f5d2d..b92f3a677 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -36,3 +36,13 @@ owncloud_add_test(XmlParse "")
owncloud_add_test(FileSystem "")
owncloud_add_test(TransChecksumValidator "")
+
+SET(FolderMan_SRC ../src/gui/folderman.cpp)
+list(APPEND FolderMan_SRC ../src/gui/folder.cpp )
+list(APPEND FolderMan_SRC ../src/gui/socketapi.cpp )
+list(APPEND FolderMan_SRC ../src/gui/accountstate.cpp )
+list(APPEND FolderMan_SRC ../src/gui/syncrunfilelog.cpp )
+list(APPEND FolderMan_SRC ${FolderWatcher_SRC})
+list(APPEND FolderMan_SRC stub.cpp )
+owncloud_add_test(FolderMan "${FolderMan_SRC}")
+