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
path: root/cmake
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2012-03-08 14:38:15 +0400
committerKlaas Freitag <freitag@owncloud.com>2012-03-08 14:38:15 +0400
commitdf2d7457479cd08e591f53f5ef39a95aaba42b3f (patch)
tree38ca1bc97ed4577255b58c6cafa51ebc1ba7a699 /cmake
parentcf4130caf9171da805073951aea5ecda5d05fada (diff)
Add a hint to find the development time csync libs and includes.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindCsync.cmake5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmake/modules/FindCsync.cmake b/cmake/modules/FindCsync.cmake
index c7ecef103..5fd2e9365 100644
--- a/cmake/modules/FindCsync.cmake
+++ b/cmake/modules/FindCsync.cmake
@@ -1,7 +1,8 @@
-FIND_LIBRARY(CSYNC_LIBRARY NAMES csync)
+FIND_LIBRARY(CSYNC_LIBRARY NAMES csync
+ HINTS "../buildcsync/src" )
FIND_PATH(CSYNC_INCLUDE_PATH csync.h
- HINTS "/usr/include/csync")
+ HINTS "../csync/src" "/usr/include/csync")
SET(CSYNC_INCLUDE_DIR ${CSYNC_INCLUDE_PATH})