diff --git a/conanfile.py b/conanfile.py index bd50355..8f9b57c 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,5 +1,5 @@ from conans import ConanFile -from conan.tools.cmake import CMakeDeps, CMake, CMakeToolchain +from conan.tools.cmake import CMake, CMakeToolchain from conans.tools import save, load import os import pathlib @@ -25,9 +25,6 @@ class ExamplePluginsConan(ConanFile): author = "B. van Lew b.van_lew@lumc.nl" # conan recipe author license = "MIT" - short_paths = True - generators = "CMakeDeps" - # Options may need to change depending on the packaged library settings = {"os": None, "build_type": None, "compiler": None, "arch": None} options = {"shared": [True, False], "fPIC": [True, False]}