Skip to content

Commit

Permalink
Updating crow conan recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
madduci authored Jan 8, 2021
1 parent 6f4fbe5 commit 29433a3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions recipes/crowcpp-crow/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class CrowConan(ConanFile):
topics = ("conan", "web", "microframework", "header-only")
url = "https://github.com/conan-io/conan-center-index"
settings = "os", "compiler", "arch", "build_type"
exports_sources = ["patches/*"]
license = "BSD-3-Clause"

@property
Expand All @@ -17,6 +16,7 @@ def _source_subfolder(self):

def requirements(self):
self.requires("boost/1.75.0")
'''To be removed in next released versions'''
self.requires("openssl/1.1.1i")

def source(self):
Expand All @@ -25,8 +25,6 @@ def source(self):
os.rename(extracted_dir, self._source_subfolder)

def build(self):
for patch in self.conan_data.get("patches", {}).get(self.version, []):
tools.patch(**patch)
cmake = CMake(self)
cmake.configure(source_folder=self._source_subfolder)
cmake.build(target="amalgamation")
Expand Down

0 comments on commit 29433a3

Please sign in to comment.