Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizux/dice
Dice probability C++ library
https://github.com/mizux/dice
board-game
Last synced: 5 days ago
JSON representation
Dice probability C++ library
- Host: GitHub
- URL: https://github.com/mizux/dice
- Owner: Mizux
- License: mpl-2.0
- Created: 2020-01-05T20:25:37.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T13:39:45.000Z (about 1 year ago)
- Last Synced: 2024-12-03T07:37:26.311Z (2 months ago)
- Topics: board-game
- Language: Python
- Homepage:
- Size: 234 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status][github_status]][github_link]
[![Build Status][travis_status]][travis_link]
[![Build Status][appveyor_status]][appveyor_link][github_status]: https://github.com/Mizux/dice/workflows/C++%20CI/badge.svg
[github_link]: https://github.com/Mizux/dice/actions[travis_status]: https://travis-ci.com/Mizux/dice.svg?branch=master
[travis_link]: https://travis-ci.com/Mizux/dice[appveyor_status]: https://ci.appveyor.com/api/projects/status/627v95pcklcn9aey/branch/master?svg=true
[appveyor_link]: https://ci.appveyor.com/project/Mizux/dice/branch/master# Introduction
Some dice stuff work in progress...# Project directory layout
Thus the project layout is as follow:* [CMakeLists.txt](CMakeLists.txt) Top-level for [CMake](https://cmake.org/cmake/help/latest/) based build.
* [cmake](cmake) Subsidiary CMake files.* [ci](ci) Top-level directory for Makefile/docker CI.
# C++ Project Build
To build the C++ project, as usual:
```sh
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release --target all
CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --config Release --target test
```