]> git.lizzy.rs Git - nothing.git/blob - README.md
Add GIF of the gameplay to README
[nothing.git] / README.md
1 [![Build Status](https://travis-ci.org/tsoding/nothing.svg?branch=master)](https://travis-ci.org/tsoding/nothing)
2
3 # Nothing
4
5 ![](https://i.imgur.com/06VwEk3.gif)
6
7 ## Quick Start
8
9 ```console
10 $ nix-shell              # Only on NixOS
11 $ mkdir build
12 $ cd build/
13 $ cmake ..
14 $ make
15 $ cd ..
16 $ ./nothing
17 ```
18
19 ## Build on Windows
20
21 You need to install [conan][] and [Visual Studio 2017][visual-studio].
22
23 ### Dependencies
24
25 Current version of [SDL2/2.0.5@lasote/stable][conan-sdl2] in the conan-transit
26 repository is not compatible with the latest conan, so you'll need to install
27 it locally from the git repository:
28
29 ```console
30 $ git clone https://github.com/lasote/conan-sdl2.git # temporary, I hope hope hope
31 $ cd conan-sdl2
32 $ conan export SDL2/2.0.5@lasote/stable
33 ```
34
35 ### Building
36
37 Execute the following commands inside of the `nothing` directory:
38
39 ```console
40 $ conan install --build missing --install-folder build
41 $ cd build
42 $ cmake .. -G "Visual Studio 15 2017 Win64"
43 ```
44
45 After that, build the `build/nothing.sln` file with Visual Studio.
46
47 ## Support
48
49 You can support my work via
50
51 - Twitch channel: https://www.twitch.tv/subs/tsoding
52 - Patreon: https://www.patreon.com/tsoding
53
54 [conan]: https://www.conan.io/
55 [conan-sdl2]: https://bintray.com/conan/conan-transit/SDL2%3Alasote/2.0.5%3Astable
56 [visual-studio]: https://www.visualstudio.com/