xo-umbrella2/xo-randomgen
Roland Conybeare 8da97cc60a bugfix: misuse of xo_self_headeronly_dependency() [BUILD]
should only be used in header-only library targets,
never in executable targets
2026-07-25 16:50:11 -04:00
..
cmake git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -04:00
example bugfix: misuse of xo_self_headeronly_dependency() [BUILD] 2026-07-25 16:50:11 -04:00
include/xo/randomgen git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -04:00
.gitignore git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -04:00
.gitrepo git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -04:00
CMakeLists.txt git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -04:00
README.md git subrepo clone (merge) git@github.com:Rconybea/xo-randomgen.git xo-randomgen 2026-06-06 21:32:39 -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