You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
513 B
16 lines
513 B
# Building
|
|
|
|
This build setup is only working/tested for GNU/Linux systems. In order to have the required development dependencies, install them using your system's package manager. This is `libsfml-dev` on Debian-based systems and `sfml` on Arch-based systems (untested). They package must be at version 2.5.
|
|
|
|
First, `cd` into this folder, then run Cmake to generate the Makefile. If you ever update `CMakeLists.txt`, run this command again.
|
|
|
|
```SH
|
|
cmake ..
|
|
```
|
|
|
|
To compile and run:
|
|
|
|
```SH
|
|
make && ./elnutris
|
|
```
|