blob: f930886d3d7c4e7b0ae4ea356c3de64fe7c12da7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
add_custom_target(crypto_plugins)
set(crypto_plugin_dir ${CEPH_INSTALL_PKGLIBDIR}/crypto)
add_subdirectory(openssl)
if(HAVE_INTEL AND HAVE_NASM_X64_AVX2 AND (NOT APPLE))
add_subdirectory(isa-l)
endif()
if(WITH_QAT)
add_subdirectory(qat)
endif()
|