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:
authorDaniel Molkentin <danimo@owncloud.com>2014-08-27 11:15:31 +0400
committerDaniel Molkentin <danimo@owncloud.com>2014-08-27 12:27:29 +0400
commit2c6324e3e5096af5199bd11e533921d106802ae6 (patch)
tree36fba64220f80709b6c278fca0acbd2b20297f00 /test/CMakeLists.txt
parente442ba863aacc83b483ae19dc900dea5295f5230 (diff)
Fix tests
Diffstat (limited to 'test/CMakeLists.txt')
-rw-r--r--test/CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 37ac1e83b..597fb2e31 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -8,16 +8,16 @@ owncloud_add_test(OwncloudPropagator "")
owncloud_add_test(Utility "")
owncloud_add_test(Updater "")
-SET(FolderWatcher_SRC ../src/mirall/folderwatcher.cpp)
+SET(FolderWatcher_SRC ../src/gui/folderwatcher.cpp)
IF( NOT WIN32 AND NOT APPLE )
-list(APPEND FolderWatcher_SRC ../src/mirall/folderwatcher_linux.cpp)
+list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_linux.cpp)
ENDIF()
IF( WIN32 )
-list(APPEND FolderWatcher_SRC ../src/mirall/folderwatcher_win.cpp)
+list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_win.cpp)
ENDIF()
IF( APPLE )
-list(APPEND FolderWatcher_SRC ../src/mirall/folderwatcher_mac.cpp)
+list(APPEND FolderWatcher_SRC ../src/gui/folderwatcher_mac.cpp)
ENDIF()
owncloud_add_test(FolderWatcher "${FolderWatcher_SRC}")