https://github.com/uchuhimo/sparkle
An actor system for C++
https://github.com/uchuhimo/sparkle
actor cpp
Last synced: about 1 year ago
JSON representation
An actor system for C++
- Host: GitHub
- URL: https://github.com/uchuhimo/sparkle
- Owner: uchuhimo
- License: apache-2.0
- Created: 2017-08-09T14:35:39.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-26T06:31:32.000Z (almost 8 years ago)
- Last Synced: 2025-02-02T15:26:46.812Z (over 1 year ago)
- Topics: actor, cpp
- Language: C++
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sparkle
[](http://en.cppreference.com/w/cpp)
[](https://travis-ci.org/uchuhimo/sparkle)
An actor system for C++.
## Prerequisites
- CMake 2.8 or higher
- GCC 5 or higher
- Conan
## Build from source
Debug:
```bash
conan install . -s build_type=Debug --install-folder=cmake-build-debug
cd cmake-build-debug
cmake -DCMAKE_BUILD_TYPE=Debug .. && make
```
Release:
```bash
conan install . -s build_type=Release --install-folder=cmake-build-release
cd cmake-build-release
cmake -DCMAKE_BUILD_TYPE=Release .. && make
```
# License
© uchuhimo, 2017-2018. Licensed under an [Apache 2.0](./LICENSE) license.