blob: eee534435d6ee5d61c978027120bb7a6360fa11d (
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_BETTER_YASM_ELF64 AND (NOT APPLE))
add_subdirectory(isa-l)
endif()
if(WITH_QAT)
add_subdirectory(qat)
endif()
|