X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fcrypto%2Fqat%2Fmeson.build;h=fc65923a7642fd54a721e0945f499f07e4b27196;hb=135ccbc6a753c8306d3807abc9de3ed8989e8db2;hp=9cc98d2c27d40c45cb15ef7f6d88d0b0bd26d810;hpb=7a34c21557164e2a9d2bb6915281dff12a3f4741;p=dpdk.git diff --git a/drivers/crypto/qat/meson.build b/drivers/crypto/qat/meson.build index 9cc98d2c27..fc65923a76 100644 --- a/drivers/crypto/qat/meson.build +++ b/drivers/crypto/qat/meson.build @@ -4,6 +4,7 @@ # this does not build the QAT driver, instead that is done in the compression # driver which comes later. Here we just add our sources files to the list build = false +reason = '' # sentinal value to suppress printout dep = dependency('libcrypto', required: false) qat_includes += include_directories('.') qat_deps += 'cryptodev' @@ -11,8 +12,10 @@ if dep.found() # Add our sources files to the list qat_sources += files('qat_sym_pmd.c', 'qat_sym.c', - 'qat_sym_session.c') + 'qat_sym_session.c', + 'qat_asym_pmd.c', + 'qat_asym.c') qat_ext_deps += dep - pkgconfig_extra_libs += '-lcrypto' qat_cflags += '-DBUILD_QAT_SYM' + qat_cflags += '-DBUILD_QAT_ASYM' endif