sleef: disable optional dependencies (#24742)

This commit is contained in:
Adam J. Stewart 2021-07-07 04:34:07 -05:00 committed by GitHub
parent 3c9a58bd0b
commit e914e561ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,3 +36,10 @@ class Sleef(CMakePackage):
depends_on('ninja', type='build')
generator = 'Ninja'
def cmake_args(self):
return [
self.define('DISABLE_FFTW', True),
self.define('DISABLE_MPFR', True),
self.define('DISABLE_SSL', True),
]