From: Dan Mick Date: Fri, 21 Apr 2017 18:18:27 +0000 (-0700) Subject: CMakeLists.txt: don't do crypto/isa-l if not Intel X-Git-Tag: v12.0.3~293^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F14721%2Fhead;p=ceph.git CMakeLists.txt: don't do crypto/isa-l if not Intel Signed-off-by: Dan Mick --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 39ce986a644..f5e90761586 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -841,7 +841,9 @@ add_subdirectory(compressor) add_subdirectory(tools) -add_subdirectory(crypto/isa-l) +if(HAVE_INTEL) + add_subdirectory(crypto/isa-l) +endif(HAVE_INTEL) if(WITH_TESTS)