Re: the libzmq update - looks great. One thing - MacOS does not require -pthread, so if you could put a condition into the libzmq Conanfile removing -pthread for Mac that would remove a warning on each build:
clang: warning: argument unused during compilation: '-pthread'
It is adding Macos to this condition:
if not self.settings.os == "Windows" and not self.settings.os == "Macos":
self.cpp_info.cppflags = ["-pthread"]
Re: the libzmq update - looks great. One thing - MacOS does not require -pthread, so if you could put a condition into the libzmq Conanfile removing -pthread for Mac that would remove a warning on each build:
clang: warning: argument unused during compilation: '-pthread' It is adding Macos to this condition:
Thanks!
cc/ @sourcedelica