https://github.com/nel-s/seedfinding
For storing most of my seedfinding-related files. This is also the place to submit issues relating to my reference guide "On Seedfinding".
https://github.com/nel-s/seedfinding
climate minecraft seedcracking seedfinding spawn
Last synced: 9 months ago
JSON representation
For storing most of my seedfinding-related files. This is also the place to submit issues relating to my reference guide "On Seedfinding".
- Host: GitHub
- URL: https://github.com/nel-s/seedfinding
- Owner: Nel-S
- License: other
- Created: 2024-02-28T19:18:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-11T08:31:27.000Z (almost 2 years ago)
- Last Synced: 2024-04-11T09:53:02.055Z (almost 2 years ago)
- Topics: climate, minecraft, seedcracking, seedfinding, spawn
- Language: C
- Homepage: https://docs.google.com/document/d/1V1wpuHcewQM3loxzVW0LQqASc17LkxeN6qugebkHkJ8
- Size: 13.7 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Seedfinding
This repository holds almost all of my seedfinding-related files and code.
## C/C++ Compiling
Most of the C/C++ files in this repository can be compiled by
1. Installing [CMake](https://cmake.org/download) and a Makefile generator of your choice (such as [GNU Make](https://www.gnu.org/software/make/#download) for Linux or [MinGW](https://www.mingw-w64.org/downloads) for Windows).
2. Opening a terminal of your choice, and running
```bash
cmake -G "[Makefile generator to use]" -Dprog="[path/to/program/to/run]" -Dbackend="[Backend to use: Basic (default), Pthreads, or MPI]" .
```
3. After CMake finishes, running your makefile generator (e.g. `make` if using GNU Make or `mingw32-make.exe` if using MinGW).
4. Opening the `\bin` folder that will be created, and running the `seedfinding`/`seedfinding.exe` executable inside.
(A build script is planned to ultimately automate this process.)