correct dependencies

This commit is contained in:
Andrei Alexeyev 2017-09-27 23:24:57 +03:00
parent e0d76df556
commit aeda17550d
No known key found for this signature in database
GPG key ID: 363707CD4C7FE8A4
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
project(taisei C)
cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.3)
set(BUILDSCRIPTS_DIR "${CMAKE_CURRENT_SOURCE_DIR}/scripts")
set(MISC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/misc")

View file

@ -10,10 +10,10 @@ shoot-em-up games set in an isolated world full of Japanese folklore.
Dependencies:
* SDL2 >= 2.0.5, SDL2\_ttf, SDL2\_mixer
* zlib
* libzip
* libzip >= 1.0
* libpng >= 1.5.0
* OpenGL >= 2.1
* CMake >= 3.2 (build system)
* CMake >= 3.3 (build system)
* pkg-config (build dependency)
To build and install Taisei just follow these steps.

View file

@ -21,7 +21,7 @@ pkg_check_modules(SDL2 sdl2>=2.0.5 REQUIRED)
pkg_check_modules(SDL2_TTF SDL2_ttf REQUIRED)
pkg_check_modules(ZLIB zlib REQUIRED)
pkg_check_modules(PNG libpng>=1.5 REQUIRED)
pkg_check_modules(ZIP libzip REQUIRED)
pkg_check_modules(ZIP libzip>=1.0 REQUIRED)
if(NOT NO_AUDIO)
pkg_check_modules(SDL2_MIXER SDL2_mixer REQUIRED)