Updated to compile:
- KdTree+Octree: max_depth changed to static const (this should be configured at compile time)
- wget tool replaced by curl, which is now more widespread
- added CMakeLists (to eventually replace SCons)
- various fixes
# This is still incomplete, use SCons for now.cmake_minimum_required(VERSION 3.0)project(pyrit)file(GLOB SOURCES src/*.cc include/*.h)add_library(pyrit STATIC ${SOURCES})target_include_directories(pyrit PRIVATE include)