https://github.com/grazen0/sweepr
Funky Minesweeper game for the terminal written in C++.
https://github.com/grazen0/sweepr
cpp minesweeper nix university-project
Last synced: 24 days ago
JSON representation
Funky Minesweeper game for the terminal written in C++.
- Host: GitHub
- URL: https://github.com/grazen0/sweepr
- Owner: Grazen0
- License: mit
- Created: 2024-10-24T16:16:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T00:44:07.000Z (about 1 year ago)
- Last Synced: 2025-10-24T12:59:25.958Z (5 months ago)
- Topics: cpp, minesweeper, nix, university-project
- Language: C++
- Homepage:
- Size: 147 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sweepr · 
Funky Minesweeper game for the terminal written in C++, and also a final project for a university class.
Está en español, por cierto.

## Try it out!
If you use [Nix](https://nixos.org/) (which is awesome btw), just do `nix run github:Grazen0/sweepr`.
## Dependencies
- [GCC](https://gcc.gnu.org/) (or some other C++ compiler?)
- [CMake](https://cmake.org/)
If you use Nix (which is awesome btw, again), you can simply run `nix develop` and the environment should be set up for you.
## Building
The following commands (when executed at the project's root directory) should compile everything.
```sh
cmake . -B build
cmake --build build
```
The final executable should then be located at `build/sweepr`.
If you use Nix (which is awesome btw, for the last time), just run `nix build` and the executable should be located at `result/bin/sweepr`.
Either that, or just run the thing with `nix run`.
## Testing
None performed.