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

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)