We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 664955d commit 1b845c0Copy full SHA for 1b845c0
recipes/fftw/all/conanfile.py
@@ -90,6 +90,7 @@ def generate(self):
90
tc.variables["ENABLE_SSE2"] = self.options.simd == "sse2"
91
tc.variables["ENABLE_AVX"] = self.options.simd == "avx"
92
tc.variables["ENABLE_AVX2"] = self.options.simd == "avx2"
93
+ tc.cache_variables["CMAKE_POLICY_VERSION_MINIMUM"] = "3.5" # CMake 4 support
94
tc.generate()
95
96
@property
0 commit comments