From 344960f7470d7b6e5cb0c0b1d7e751d47063a98c Mon Sep 17 00:00:00 2001 From: Marc Sunet Date: Sat, 7 May 2022 08:09:10 -0700 Subject: Add random library. --- random/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 random/CMakeLists.txt (limited to 'random/CMakeLists.txt') diff --git a/random/CMakeLists.txt b/random/CMakeLists.txt new file mode 100644 index 0000000..ec80b1d --- /dev/null +++ b/random/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.0) + +project(random) + +add_library(random + src/mt19937-64.c) + +target_include_directories(random PUBLIC include) + +target_compile_options(random PRIVATE -Wall -Wextra) -- cgit v1.2.3