diff --git a/conanfile.py b/conanfile.py index af94f6e..fd61d00 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,34 +1,34 @@ from conans import ConanFile, CMake class KConfigConan(ConanFile): name = "kconfig" version = "5.48.0" license = "GPLv2" url = "https://api.kde.org/frameworks/kconfig/html/index.html" description = "Persistent platform-independent application settings." settings = "os", "compiler", "build_type", "arch" requires = ( - "extra-cmake-modules/5.58.0@kde/testing", + "extra-cmake-modules/5.48.0@kde/testing", "Qt/5.11.1@bincrafters/stable" # "qt-gui/5.8.0@qt/testing", ) generators = "cmake" 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"]