Browse Source

Fix conan rules to build aganist Qt 5.15.2

- Migrate to latest available Qt 5 version for conan build
- Remove dependency on microjson since it's not applicable anymore
Alexey Edelev 2 years ago
parent
commit
68267d20d6
1 changed files with 2 additions and 3 deletions
  1. 2 3
      conanfile.py

+ 2 - 3
conanfile.py

@@ -4,7 +4,7 @@ import os
 
 class QtProtobufConan(ConanFile):
     name = "qtprotobuf"
-    version = "0.5.0"
+    version = "0.6.0"
     license = "MIT"
     url = "https://github.com/semlanik/qtprotobuf"
     description = ("gRPC and Protobuf generator and bindings for Qt framework")
@@ -20,8 +20,7 @@ class QtProtobufConan(ConanFile):
     requires = [
         "protobuf/3.9.1",
         "protoc_installer/3.9.1@bincrafters/stable",
-        "qt/5.14.2@bincrafters/stable",
-        "microjson/0.1.0@semlanik/stable",
+        "qt/5.15.2",
     ]
     scm = {
         "type": "git",