mirror of
https://github.com/ceph/ceph
synced 2024-12-18 17:37:38 +00:00
f7fa3b50c1
This is a complete rewrite on top of SimpleRADOSStriper as well as the API. The VFS is now a loadable extension as well. Fixes: https://tracker.ceph.com/issues/40609 Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
13 lines
478 B
CMake
13 lines
478 B
CMake
find_path(SQLite3_INCLUDE_DIR NAMES sqlite3.h)
|
|
find_library(SQLite3_LIBRARY NAMES sqlite3 sqlite)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(SQLite3 DEFAULT_MSG SQLite3_LIBRARY SQLite3_INCLUDE_DIR)
|
|
|
|
if(NOT TARGET SQLite3::SQLite3)
|
|
add_library(SQLite3::SQLite3 UNKNOWN IMPORTED)
|
|
set_target_properties(SQLite3::SQLite3 PROPERTIES
|
|
IMPORTED_LOCATION "${SQLite3_LIBRARY}"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${SQLite3_INCLUDE_DIR}")
|
|
endif()
|