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:
authorOlivier Goffart <ogoffart@woboq.com>2018-06-04 12:44:09 +0300
committerOlivier Goffart <ogoffart@woboq.com>2018-06-04 12:44:09 +0300
commit9a8078944f1a92927eb48decd78d64e270d9b567 (patch)
treeba20c56ce8eb5ca7195125b5ce8629f2a946e756 /cmake
parent76bb76a59e6633b9a38c7a0e36d8e51efc7a4047 (diff)
FindSql3.cmake: Add the input variable in the search path
Issue #6278
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/FindSQLite3.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmake/modules/FindSQLite3.cmake b/cmake/modules/FindSQLite3.cmake
index 2fa9e4100..4fd1ceb53 100644
--- a/cmake/modules/FindSQLite3.cmake
+++ b/cmake/modules/FindSQLite3.cmake
@@ -26,6 +26,7 @@ find_path(SQLITE3_INCLUDE_DIR
sqlite3.h
PATHS
${_SQLITE3_INCLUDEDIR}
+ ${SQLITE3_INCLUDE_DIRS}
)
find_library(SQLITE3_LIBRARY
@@ -33,6 +34,7 @@ find_library(SQLITE3_LIBRARY
sqlite3 sqlite3-0
PATHS
${_SQLITE3_LIBDIR}
+ ${SQLITE3_LIBRARIES}
)
set(SQLITE3_INCLUDE_DIRS