Schematika parser (vanilla object model; see xo-reader2 for facet object model version)
  • C++ 98.6%
  • CMake 1.4%
Find a file
Roland Conybeare 5593177cf5 Split 'xo-subsys/' into commit '47849e8ee9'
git-subtree-dir: xo-subsys
git-subtree-mainline: dd1943f9075c73b658d0ebb47cfe89cfcd649a54
git-subtree-split: 47849e8ee9
2026-05-31 09:59:43 -04:00
cmake build: update cmake bootstrap macros for in-tree builds 2026-05-31 09:50:13 -04:00
example xo-randomgen: build: install examples with XO_ENABLE_EXAMPLES 2025-09-22 12:30:00 -04:00
include/xo/randomgen xo-arena: DArenaHashMap: generative test + check load factor 2026-01-07 16:52:50 -05:00
.gitignore build: streamline CMAKE_MODULE_PATH interaction 2024-03-15 19:27:50 -04:00
CMakeLists.txt xo-randomgen: build: install examples with XO_ENABLE_EXAMPLES 2025-09-22 12:30:00 -04:00
README.md build: allow symlink-preferred install 2023-10-19 16:34:28 -04:00

random number generators

Getting Started

build + install dependencies

to build + install locally

$ cd randomgen
$ mkdir build
$ cd build
$ PREFIX=/usr/local # for example
$ cmake -DCMAKE_MODULE_PATH=${PREFIX}/share/cmake -DCMAKE_PREFIX_PATH=$(PREFIX) -DCMAKE_INSTALL_PREFIX=${PREFIX} ..
$ make
$ make install