Fix finding of sqlite3 library

master
Michal Kottman 2013-10-06 17:06:05 +02:00
parent 55f0d6a02c
commit 78d148c21f
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@
FIND_PATH(SQLITE3_INCLUDE_DIR NAMES sqlite3.h)
# Look for the library.
FIND_LIBRARY(SQLITE3_LIBRARY NAMES sqlite libsqlite)
FIND_LIBRARY(SQLITE3_LIBRARY NAMES sqlite3 libsqlite3 sqlite libsqlite)
# Handle the QUIETLY and REQUIRED arguments and set SQLITE3_FOUND to TRUE if all listed variables are TRUE.
INCLUDE(FindPackageHandleStandardArgs)