mirror of
https://github.com/facebookresearch/faiss.git
synced 2025-06-03 21:54:02 +08:00
Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/3216 Reviewed By: mdouze Differential Revision: D53051090 Pulled By: algoriddle fbshipit-source-id: 13a027db36207af9be11a2f181116994b2aff2cb
9 lines
302 B
CMake
9 lines
302 B
CMake
cmake_minimum_required(VERSION 3.17 FATAL_ERROR)
|
|
project (ROCKSDB_IVF)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
find_package(faiss REQUIRED)
|
|
find_package(RocksDB REQUIRED)
|
|
|
|
add_executable(demo_rocksdb_ivf demo_rocksdb_ivf.cpp RocksDBInvertedLists.cpp)
|
|
target_link_libraries(demo_rocksdb_ivf faiss RocksDB::rocksdb)
|