Schematika abstract syntax tree (vanilla object model, see xo-expression2 for facet object model)
  • C++ 97.7%
  • CMake 2.3%
Find a file
Roland Conybeare 14f12fdf8e Split 'xo-numeric/' into commit '5f2de0ad5a'
git-subtree-dir: xo-numeric
git-subtree-mainline: 8888986784c73c417110df62254ff958c83200d8
git-subtree-split: 5f2de0ad5a
2026-05-30 12:07:21 -04:00
cmake xo-cmake: setup to make share target available via cmake install 2026-02-27 19:38:53 +11: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