vcpkg/ports/sqlite3/sqlite3-config.in.cmake
Cheney Wang 250d199aa1
[sqlite3] Remove the restriction of using find_dependency(Threads) only under static linking (#25460)
* [sqlite3] Remove the restriction of using find_dependency(Threads) only under static linking

* x-add-version

Co-authored-by: Cheney-Wang <v-xincwa@microsoft.com>
2022-06-30 12:52:49 -07:00

8 lines
166 B
CMake

if(NOT WIN32)
include(CMakeFindDependencyMacro)
find_dependency(Threads)
endif()
include(${CMAKE_CURRENT_LIST_DIR}/unofficial-sqlite3-targets.cmake)