mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 09:46:02 -04:00
Merge pull request #278 from sum01/fix_cmake_config
Add missing Threads dependency to Config.cmake.in
This commit is contained in:
commit
f0cd9e3586
@ -1,5 +1,9 @@
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(SQLite3)
|
||||
find_dependency(SQLite3 REQUIRED)
|
||||
if(@UNIX@)
|
||||
set(THREADS_PREFER_PTHREAD_FLAG @THREADS_PREFER_PTHREAD_FLAG@)
|
||||
find_dependency(Threads REQUIRED)
|
||||
endif()
|
||||
|
||||
@PACKAGE_INIT@
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user