# mars::rng — the engine PRNG (MT19937).
# Included from the root CMakeLists.txt via add_subdirectory(src/mars/rng).

add_library(mars_rng STATIC mt19937.cpp)
target_include_directories(mars_rng PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../..)
target_compile_features(mars_rng PUBLIC cxx_std_17)
