cpu-features: Add variant to enable BUILD_SHARED_LIBS=True (#33809)

* Allow building shared libraries for cpu-features
This commit is contained in:
iarspider 2022-11-10 11:14:52 +01:00 committed by GitHub
parent cfd0dc6d89
commit c1aec72f60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,8 +17,11 @@ class CpuFeatures(CMakePackage):
version("0.7.0", tag="v0.7.0")
variant("shared", description="Build shared libraries", default=False)
depends_on("cmake@3.0.0:", type="build")
def cmake_args(self):
args = ["-DBUILD_TESTING:BOOL=OFF"]
args += self.enable_or_disable("BUILD_SHARED_LIBS", variant="shared")
return args