Closed kevinkreiser closed 6 years ago
Great, thanks! The README needs to be updated too though.
We're not ready to fully switch to cmake mainly because it's not what we are using for debian packaging. I haven't a full grasp on how to do that migration so until we fugure that out autotools is still the fool proof way of building the project. We probably should have more build config for Travis to build with autotools and cmake...
This fixes #67
Most of this work is from @PayasR. The main thing that made travis builds pass was making the include path be not just:
But also just adding the root dir:
I also removed the cmake find_package stuff using custom cmake modules and instead went back to using
pkgconfig
. I also removed the hardcodedpthread
linker flag and got atpthread
usingfind_package(Threads REQUIRED)
and the variables it produces.