aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 94264c703f81ef7033b32c309acb802aeb1adafc (plain)
1
2
3
4
5
6
7
8
9
cmake_minimum_required(VERSION 3.10)
project(extent-sampling VERSION 0.1)

find_package(GSL REQUIRED)

include_directories("include")
file(GLOB SOURCES "src/*.c")

add_library(extentsampling SHARED ${SOURCES})