We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbdb01f commit d39189bCopy full SHA for d39189b
cppython/plugins/conan/plugin.py
@@ -214,9 +214,8 @@ def _create_cmake_sync_data(self) -> CMakeSyncData:
214
Returns:
215
CMakeSyncData configured for Conan integration
216
"""
217
- # Conan's CMakeToolchain generator creates preset files at the configured user_presets_path
218
- # This should match the path configured in the conanfile template
219
- conan_toolchain_path = self.core_data.cppython_data.tool_path / 'ConanPresets.json'
+ # TODO: Use the actual toolchain path conan writes to
+ conan_toolchain_path = self.core_data.cppython_data.tool_path
220
221
return CMakeSyncData(
222
provider_name=TypeName('conan'),
0 commit comments