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/csync
diff options
context:
space:
mode:
authorJocelyn Turcotte <jturcotte@woboq.com>2015-02-04 15:03:28 +0300
committerJocelyn Turcotte <turcotte.j@gmail.com>2015-02-04 16:50:38 +0300
commit43a51c1befed05bcf546ca9ea826c8dc2d0e3818 (patch)
tree7be9dc97c281e124b14b67b64184688f2091cbf5 /csync
parent68ec24797b54aee72f2e5d50f77bc646140e085c (diff)
Fix the MinGW build
- qtkeychain isn't necessarily in a qt5keychain subdirectory. - Explicitly add OpenSSL to the include directories - Make sure that the USE_OUR_OWN_SQLITE3 code is initialized for csync by calling find_package.
Diffstat (limited to 'csync')
-rw-r--r--csync/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/csync/CMakeLists.txt b/csync/CMakeLists.txt
index 757725786..eeecc38dc 100644
--- a/csync/CMakeLists.txt
+++ b/csync/CMakeLists.txt
@@ -28,6 +28,8 @@ if (NOT WIN32)
find_package(Iconv)
endif (NOT WIN32)
+find_package(SQLite3 3.8.0 REQUIRED)
+
include(ConfigureChecks.cmake)