aboutsummaryrefslogtreecommitdiff
path: root/random/CMakeLists.txt
blob: ad1b68474bb279b081788d20735c3de8918d67d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 3.5)

project(random)

add_library(random
  src/mt19937-64.c
  src/normal.c)

target_include_directories(random PUBLIC include)

target_compile_options(random PRIVATE -Wall -Wextra)