mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 03:49:00 +08:00
3ab5fc5925
* [leveldb] Fix target "Threads::Threads" was not found * update version * add dependency pthreads * update version * remove pthreads * update version Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
15 lines
331 B
CMake
15 lines
331 B
CMake
@PACKAGE_INIT@
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
set_and_check(leveldb_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
|
|
find_dependency(Threads)
|
|
|
|
if (@WITH_CRC32C@)
|
|
find_dependency(Crc32c CONFIG)
|
|
endif()
|
|
if (@WITH_SNAPPY@)
|
|
find_dependency(Snappy CONFIG)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/leveldbTargets.cmake")
|