Skip to content

Commit

Permalink
Fixes link errors on Windows from using deprecated exec_monitor libs.
Browse files Browse the repository at this point in the history
  • Loading branch information
grafikrobot committed Mar 22, 2018
1 parent 344b3f8 commit 9409f5a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions conanfile.py
Expand Up @@ -46,6 +46,9 @@ def package_id_additional(self):
for dep_name in boost_deps_only:
self.info.requires[dep_name].full_version_mode()

def package_info_additional(self):
self.cpp_info.libs = [x for x in self.cpp_info.libs if x.find('exec_monitor') < 0]

# BEGIN

description = "Please visit http://www.boost.org/doc/libs/1_66_0"
Expand Down

0 comments on commit 9409f5a

Please sign in to comment.