Skip to content

Commit

Permalink
Fix OSX cross-building conan-io#2
Browse files Browse the repository at this point in the history
  • Loading branch information
husitawi committed Jul 28, 2024
1 parent e920931 commit 3027324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/mysql-concpp/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class MysqlCppConnRecipe(ConanFile):
"fPIC": [True, False],
}

default_options = { "shared": False, "fPIC": True, "protobuf/3.19.6:lite": True }
default_options = { "shared": False, "fPIC": True }

def export_sources(self):
export_conandata_patches(self)
Expand All @@ -42,7 +42,7 @@ def requirements(self):
self.requires("openssl/3.2.2")
self.requires("boost/1.85.0")
self.requires("zstd/1.5.6")
self.requires("protobuf/3.19.6")
self.requires("protobuf/3.19.6", options={"lite": True})
# self.requires("libmysqlclient/8.1.0")

def build_requirements(self):
Expand Down

0 comments on commit 3027324

Please sign in to comment.