Adds a CMake superbuild project to clusters_ultimate. I did get testing working, but hopefully this will give you a better idea how to use CMake. The project can now be built as:
cmake -H. -Bbuild; cd build; make
I also added a quick travis CI script which will build, but not test the project yet. Again, this will need tweaking, but will hopefully get you started.
As a note I removed spdlog as currently implemented as you only copied the project headers and stripped off the license files and the like which is not particularly kosher.
In the case of spdlog, what should I do then? I thought the license was written in the main header. Then I am supposed to copy the full repo and add it as you added the kdtree?
Adds a CMake superbuild project to clusters_ultimate. I did get testing working, but hopefully this will give you a better idea how to use CMake. The project can now be built as:
cmake -H. -Bbuild; cd build; make
I also added a quick travis CI script which will build, but not test the project yet. Again, this will need tweaking, but will hopefully get you started.
As a note I removed
spdlog
as currently implemented as you only copied the project headers and stripped off the license files and the like which is not particularly kosher.