CMakeLists.txt
author Radek Brich <radek.brich@devl.cz>
Tue, 26 Jul 2016 17:41:36 +0200
branchpyrit
changeset 103 3b3257a410fe
permissions -rw-r--r--
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)