Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
Merge pull request #3 from msteinert/library-order
Browse files Browse the repository at this point in the history
Fix link order
  • Loading branch information
uilianries authored Aug 23, 2018
2 parents 43fd193 + 1911829 commit 3b15d44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,7 @@ def package(self):
cmake.install()

def package_info(self):
self.cpp_info.libs = tools.collect_libs(self)
if self.settings.os == "Windows" and self.settings.build_type == 'Debug':
self.cpp_info.libs = ['pcreposixd', 'pcred']
else:
self.cpp_info.libs = ['pcreposix', 'pcre']

0 comments on commit 3b15d44

Please sign in to comment.