https://github.com/overminddl1/flecs_bench
https://github.com/overminddl1/flecs_bench
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/overminddl1/flecs_bench
- Owner: OvermindDL1
- Created: 2020-10-08T16:25:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-08T22:42:25.000Z (almost 6 years ago)
- Last Synced: 2025-01-21T18:51:29.866Z (over 1 year ago)
- Language: C++
- Size: 438 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
To just get going then just `git clone ...` this and in the directory just run `./build-run.sh`, and you can pass any usual nonius options to it as well (can start with `--help` if curious).
To do things manually then create the build system with something like (or ninja or whatever, this will use your system default):
```sh
rm -r Build/release; cmake -H. -B"Build/release" -DCMAKE_BUILD_TYPE=Release
```
Then build it with (or add like `-j9` for 9 jobs with MakeFiles or so, etc...):
```sh
cmake --build "Build/release"
```