diff --git a/conanfile.py b/conanfile.py index 97b3c8e..357477f 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,20 +1,25 @@ from conans import ConanFile, CMake class ExtracmakemodulesConan(ConanFile): name = "extra-cmake-modules" version = "5.58.0" license = "GPLv2" url = "https://api.kde.org/ecm/" description = "KDE's CMake modules" + settings = "os", "compiler", "build_type", "arch" generators = "cmake" - exports_sources = "*" + scm = { + "type": "git", + "url": "auto", + "revision": "auto" + } def build(self): cmake = CMake(self) cmake.configure() cmake.build() cmake.install() def package_info(self): self.cpp_info.resdirs = ["share"]