From 0184a02b0fb142e7d02f13cb7194a7d620c93d11 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 21 Dec 2020 14:46:57 +0100 Subject: [PATCH] temporary allow cmake_paths for CMakeToolchain (#8230) --- conan/tools/cmake/cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conan/tools/cmake/cmake.py b/conan/tools/cmake/cmake.py index f2a714e2a09..e3863dc014a 100644 --- a/conan/tools/cmake/cmake.py +++ b/conan/tools/cmake/cmake.py @@ -14,7 +14,7 @@ def _validate_recipe(conanfile): - forbidden_generators = ["cmake", "cmake_multi", "cmake_paths"] + forbidden_generators = ["cmake", "cmake_multi"] if any(it in conanfile.generators for it in forbidden_generators): raise ConanException("Usage of toolchain is only supported with 'cmake_find_package'" " or 'cmake_find_package_multi' generators")