comparison INSTALL.md @ 89:30baadb6f6a2

core: add a panic_state in the adventure, continue #2484 @2h
author David Demelier <markand@malikania.fr>
date Thu, 12 Mar 2020 20:22:02 +0100
parents a6c2067709ce
children a6d6497adb60
comparison
equal deleted inserted replaced
88:44de3c528b63 89:30baadb6f6a2
5 5
6 Requirements 6 Requirements
7 ------------ 7 ------------
8 8
9 - C11 compliant compiler, 9 - C11 compliant compiler,
10 - POSIX system (make, ar, shell, some POSIX functions), 10 - POSIX system (make, ar, shell),
11 - [pkg-config][], Helper for libraries.
11 - [Jansson][], JSON parsing library, 12 - [Jansson][], JSON parsing library,
12 - [SDL2][], Multimedia library, 13 - [SDL2][], Multimedia library,
13 - [SDL2_image][], Image loading addon for SDL2, 14 - [SDL2_image][], Image loading addon for SDL2,
14 - [SDL2_ttf][], Fonts addon for SDL2, 15 - [SDL2_ttf][], Fonts addon for SDL2,
15 - [SDL2_mixer][], Audio addon for SDL2. 16 - [SDL2_mixer][], Audio addon for SDL2.
35 36
36 Once you have MSYS2 installed, simply install the following packages from the 37 Once you have MSYS2 installed, simply install the following packages from the
37 appropriate MinGW shell prior to the chapter above. 38 appropriate MinGW shell prior to the chapter above.
38 39
39 - *make* 40 - *make*
41 - *mingw-w64-x86_64-pkg-config*
40 - *mingw-w64-x86_64-gcc* 42 - *mingw-w64-x86_64-gcc*
41 - *mingw-w64-x86_64-expat* (only for molko-map tool)
42 - *mingw-w64-x86_64-SDL2* 43 - *mingw-w64-x86_64-SDL2*
43 - *mingw-w64-x86_64-SDL2_image* 44 - *mingw-w64-x86_64-SDL2_image*
44 - *mingw-w64-x86_64-SDL2_mixer* 45 - *mingw-w64-x86_64-SDL2_mixer*
45 - *mingw-w64-x86_64-SDL2_ttf* 46 - *mingw-w64-x86_64-SDL2_ttf*
47 - *mingw-w64-x86_64-jansson* (only for molko-map tool)
46 48
47 Note: replace `x86_64` with `i686` if you have a deprecated system. 49 Note: replace `x86_64` with `i686` if you have a deprecated system or if you
50 have issues while debugging (MinGW-w64 and/or gdb have known issues in
51 this area).
48 52
49 [Jansson][]: http://www.digip.org/jansson 53 [Jansson][]: http://www.digip.org/jansson
50 [SDL2]: http://libsdl.org 54 [SDL2]: http://libsdl.org
51 [SDL2_image]: https://www.libsdl.org/projects/SDL_image 55 [SDL2_image]: https://www.libsdl.org/projects/SDL_image
52 [SDL2_ttf]: https://www.libsdl.org/projects/SDL_ttf 56 [SDL2_ttf]: https://www.libsdl.org/projects/SDL_ttf
53 [SDL2_mixer]: https://www.libsdl.org/projects/SDL_mixer 57 [SDL2_mixer]: https://www.libsdl.org/projects/SDL_mixer
54 [MSYS2]: http://www.msys2.org 58 [MSYS2]: http://www.msys2.org
59 [pkg-config]: http://pkgconf.org