mirror of https://github.com/procxx/kepka.git
Update README.md
This commit is contained in:
parent
7debac668d
commit
e190620cb8
10
README.md
10
README.md
|
@ -38,18 +38,19 @@ Provide paths to OpenAL-soft and Qt5 in CMAKE_PREFIX_PATH variable when configur
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
|
|
||||||
Install [vcpkg][] (no need to integrate, just install), [cmake][], [Qt][qt] 5.9 or later and [Visual Studio][visual-studio] 2017 or later, and set the following environment variables:
|
Install [vcpkg][] (no need to integrate, just install), [python][] 3.5, [cmake][], [Qt][qt] 5.9 or later and [Visual Studio][visual-studio] 2017 or later, and set the following environment variables:
|
||||||
|
|
||||||
- `QT_DIR`: directory where Qt binary distribution is installed, e.g. `C:\Qt\5.9.1\msvc2017_64`
|
- `QTDIR`: directory where Qt binary distribution is installed, e.g. `C:\Qt\5.9.1\msvc2017_64`
|
||||||
- `VCPKG`: directory where VCPKG is installed, e.g. `C:\vcpkg`
|
- `VCPKG`: directory where VCPKG is installed, e.g. `C:\vcpkg`
|
||||||
|
|
||||||
After that, execute the following `cmd` commands from Visual Studio developer command prompt:
|
After that, execute the following `cmd` commands from Visual Studio developer command prompt:
|
||||||
|
|
||||||
```console
|
```console
|
||||||
|
$ set PATH=c:\Python35;%PATH%
|
||||||
$ "%VCPKG%\vcpkg" install --triplet x64-windows openal-soft openssl opus zlib ffmpeg
|
$ "%VCPKG%\vcpkg" install --triplet x64-windows openal-soft openssl opus zlib ffmpeg
|
||||||
$ mkdir build
|
$ mkdir build
|
||||||
$ cd build
|
$ cd build
|
||||||
$ set PATH=%QT_DIR%\bin;%PATH%
|
$ set PATH=%QTDIR%\bin;%PATH%
|
||||||
$ cmake -G"Visual Studio 15 2017 Win64" -DCMAKE_TOOLCHAIN_FILE="%VCPKG%\scripts\buildsystems\vcpkg.cmake" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
|
$ cmake -G"Visual Studio 15 2017 Win64" -DCMAKE_TOOLCHAIN_FILE="%VCPKG%\scripts\buildsystems\vcpkg.cmake" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..
|
||||||
$ cmake --build .
|
$ cmake --build .
|
||||||
```
|
```
|
||||||
|
@ -59,7 +60,7 @@ The source code is published under GPLv3 with OpenSSL exception, the license is
|
||||||
|
|
||||||
## Supported systems
|
## Supported systems
|
||||||
|
|
||||||
* Windows XP - Windows 10 (**not** RT)
|
* Windows 7 - Windows 10 (**not** RT)
|
||||||
* Mac OS X 10.8 - Mac OS X 10.11
|
* Mac OS X 10.8 - Mac OS X 10.11
|
||||||
* Mac OS X 10.6 - Mac OS X 10.7 (separate build)
|
* Mac OS X 10.6 - Mac OS X 10.7 (separate build)
|
||||||
* Ubuntu 12.04 - Ubuntu 16.04
|
* Ubuntu 12.04 - Ubuntu 16.04
|
||||||
|
@ -84,6 +85,7 @@ The source code is published under GPLv3 with OpenSSL exception, the license is
|
||||||
|
|
||||||
[//]: # (LINKS)
|
[//]: # (LINKS)
|
||||||
[cmake]: https://cmake.org/
|
[cmake]: https://cmake.org/
|
||||||
|
[python]: https://python.org/
|
||||||
[cmake-build]: docs/building-cmake.md
|
[cmake-build]: docs/building-cmake.md
|
||||||
[qt]: https://www.qt.io/
|
[qt]: https://www.qt.io/
|
||||||
[telegram]: https://telegram.org
|
[telegram]: https://telegram.org
|
||||||
|
|
Loading…
Reference in New Issue