mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-06-18 18:56:36 +02:00
add Squirrel Eiserloh's rng, and own helper
This commit is contained in:
24
framework/random/CMakeLists.txt
Normal file
24
framework/random/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
project(random CXX)
|
||||
|
||||
add_library(random
|
||||
./src/mm/random/srng.hpp
|
||||
./src/mm/random/srng.cpp
|
||||
)
|
||||
|
||||
target_include_directories(random PUBLIC "src")
|
||||
|
||||
target_compile_features(random PUBLIC cxx_std_17)
|
||||
|
||||
target_link_libraries(random
|
||||
PUBLIC
|
||||
squirrel_noise
|
||||
std_utils
|
||||
)
|
||||
|
||||
##############################
|
||||
|
||||
#if (BUILD_TESTING)
|
||||
#add_subdirectory(test)
|
||||
#endif()
|
||||
|
Reference in New Issue
Block a user