mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 12:19:00 +08:00
4c397835c4
* add more options and remove unused CMake variables * add version * [rocksdb] fix liburing option * update version * [rocksdb] disable debug runtime for Release configuration (Windows only) * update version * [rocksdb] remove processor-specific features * [rocksdb] update v7.10.2 * add version * [rocksdb] update to v8.0.0 * add version * add version * modify version * add version * [rocksdb] update to v8.3.2, build shared library, update ci.basline.txt * update version * [rocksdb] PORTABLE option has been modified in v8.3, it should be equal to 1 * clean up ci.baseline.txt * =update version * revert "clean up ci.baseline.txt" * remove unnecessary lines * update version * update ci.baseline.txt * update version * [rocksdb] remove JeMalloc * update version
28 lines
560 B
Diff
28 lines
560 B
Diff
diff --git a/cmake/RocksDBConfig.cmake.in b/cmake/RocksDBConfig.cmake.in
|
|
index 0bd14be11..ad07f018a 100644
|
|
--- a/cmake/RocksDBConfig.cmake.in
|
|
+++ b/cmake/RocksDBConfig.cmake.in
|
|
@@ -33,11 +33,11 @@ if(@WITH_BZ2@)
|
|
endif()
|
|
|
|
if(@WITH_LZ4@)
|
|
- find_dependency(lz4)
|
|
+ find_dependency(lz4 CONFIG)
|
|
endif()
|
|
|
|
if(@WITH_ZSTD@)
|
|
- find_dependency(zstd)
|
|
+ find_dependency(zstd CONFIG)
|
|
endif()
|
|
|
|
if(@WITH_NUMA@)
|
|
@@ -45,7 +45,7 @@ if(@WITH_NUMA@)
|
|
endif()
|
|
|
|
if(@WITH_TBB@)
|
|
- find_dependency(TBB)
|
|
+ find_dependency(TBB CONFIG)
|
|
endif()
|
|
|
|
find_dependency(Threads)
|