We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc7b913 commit d37a004Copy full SHA for d37a004
CMakeLists.txt
@@ -19,6 +19,10 @@ find_package(Qt5Sql REQUIRED)
19
if (NOT WIN32)
20
find_package(PkgConfig REQUIRED)
21
pkg_check_modules(SQLCIPHER REQUIRED sqlcipher)
22
+ if (DEFINED SQLCIPHER_LIBRARY_DIRS)
23
+ link_directories(${SQLCIPHER_LIBRARY_DIRS})
24
+ message(STATUS "Added ${SQLCIPHER_LIBRARY_DIRS} to link directories...")
25
+ endif()
26
else()
27
find_package(Libsqlcipher REQUIRED)
28
endif()
0 commit comments