Conan C/C++ package manager (https://conan.io) package for Easylogging++
So far, I am uploading to conan 2 versions, latest 9.94.1, but also 8.91, supposedly the latest not to require C++11, for those with old compilers.
From 9.90, this library has changed (for faster compilation times), and now has a source file to be compiled:
-
You have to compile the provided
easylogging++.cc
source file into your application. For this you need to import the source file from your consumer:def imports(self): self.copy("*.cc")
Then, compile the file in your app:
ADD_EXECUTABLE(example example.cpp include/easylogging++.cc)