-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,29 @@ | ||
[![commit](https://github.com/sthalik/floormat/actions/workflows/cmake.yml/badge.svg)](https://github.com/sthalik/floormat/actions/workflows/cmake.yml) | ||
|
||
### floormat | ||
# floormat | ||
|
||
Game project in early development. | ||
|
||
### Build | ||
## Build | ||
|
||
Should build cleanly on Clang 17+, GCC 13.2+ and MSVC 17.7. Just make sure to check it out with submodules. | ||
Should build cleanly on Clang 17+, GCC 13.2+ and MSVC 17.7+. | ||
|
||
### License | ||
### Debian/Ubuntu dependencies | ||
`xorg-dev` `libsdl2-dev` `build-essential` `ninja-build` `cmake-curses-gui` | ||
|
||
ISC | ||
### Windows dependencies | ||
|
||
Only the compiler (MSVC, GCC, Clang) is needed. | ||
|
||
### Building | ||
```console | ||
git clone https://github.com/sthalik/floormat.git | ||
cd floormat | ||
git submodule update --init | ||
mkdir build | ||
cd build | ||
cmake -GNinja ../ | ||
ninja install | ||
ln -s ../doc/saves ./save | ||
install/bin/floormat-editor | ||
``` |