Skip to content

Commit

Permalink
(conan-io#15430) proj: lowercase system libs + bump dependencies
Browse files Browse the repository at this point in the history
* lowercase system libs

* bump dependencies
  • Loading branch information
SpaceIm authored and StellaSmith committed Feb 2, 2023
1 parent 04deaf8 commit 0934b93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions recipes/proj/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ def layout(self):

def requirements(self):
self.requires("nlohmann_json/3.11.2")
self.requires("sqlite3/3.40.0")
self.requires("sqlite3/3.40.1")
if self.options.get_safe("with_tiff"):
self.requires("libtiff/4.4.0")
if self.options.get_safe("with_curl"):
self.requires("libcurl/7.86.0")
self.requires("libcurl/7.87.0")

def build_requirements(self):
if hasattr(self, "settings_build") and cross_building(self):
self.tool_requires("sqlite3/3.40.0")
self.tool_requires("sqlite3/3.40.1")

def source(self):
get(self, **self.conan_data["sources"][self.version], destination=self.source_folder, strip_root=True)
Expand Down Expand Up @@ -189,7 +189,7 @@ def package_info(self):
if proj_version >= "7.0.0":
self.cpp_info.components["projlib"].system_libs.append("shell32")
if proj_version >= "7.1.0":
self.cpp_info.components["projlib"].system_libs.append("Ole32")
self.cpp_info.components["projlib"].system_libs.append("ole32")
if not self.options.shared:
libcxx = stdcpp_library(self)
if libcxx:
Expand Down

0 comments on commit 0934b93

Please sign in to comment.