Adding lib to conan-center-index
wouterz opened this issue · 3 comments
wouterz commented
Would you mind if create a recipe in order for this library to be hosted on and used in conjunction with conan-center-index?
berndporr commented
I guess you'll create a pull request? I guess it won't interfere with anything else in the library? As long as that's the case then sure, please create a recipe.
wouterz commented
No changes to this repo are needed.
I am working on the recipe, but ran into two main issues:
- GCC 5 does not seem to be supported and has been excluded in the recipe, although it should fully support c++11. (link )
- All windows builds seem to run into a DLL loading error (Error 3221225781). Any hints to what dependency might be missing?
berndporr commented
The cmake is not creating DLLs but only static libraries for windows so I guess that fails because if that?
GCC5 fails because it doesn't like some c++11 features: iterators in the for loop. Looks like it's not 100% c++11.