[docs] Update desktop app running options

Add a way to switch map language.

Needed-for: #1638

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin 2021-12-23 18:01:07 +03:00 committed by Alexander Borsuk
parent 38924e23f7
commit 3d19108cd3

View file

@ -130,7 +130,7 @@ tools/unix/build_omim.sh -d help
The generated binaries appear in `../omim-build-<buildtype>`.
Run `OMaps` binary from `../omim-build-<buildtype>`, for example, for release:
A desktop app binary is `OMaps`. To run e.g. a release version:
_Linux:_
@ -138,27 +138,12 @@ _Linux:_
../omim-build-release/OMaps -data_path ./data
```
or create `data` symlink in build dir to `organicmaps/data` directory and run
```bash
cd ../omim-build-release
ln -s ../organicmaps/data ./data
./OMaps -data_path ./data
```
_macOS:_
```bash
../omim-build-release/OMaps.app/Contents/MacOS/OMaps
```
When using a lot of maps, increase open files limit, which is only 256 on Mac OS X.
Use `ulimit -n 2000`, put it into `~/.bash_profile` to apply it to all new sessions.
In OS X to increase this limit globally, add `limit maxfiles 2048 2048` to `/etc/launchd.conf`
and run
echo 'ulimit -n 2048' | sudo tee -a /etc/profile
### Testing
Compile all unit tests in Debug mode:
@ -195,6 +180,19 @@ Some tests [are known to be broken](https://github.com/organicmaps/organicmaps/i
### More options
To make the desktop app display maps in a different language supply a `LANGUAGE` environment variable, e.g. for russian language:
```bash
LANGUAGE=ru_RU ../omim-build-release/OMaps -data_path ./data
```
When running the desktop app with a lot of maps increase open files limit, which is only 256 on Mac OS X.
Use `ulimit -n 2000`, put it into `~/.bash_profile` to apply it to all new sessions.
In OS X to increase this limit globally, add `limit maxfiles 2048 2048` to `/etc/launchd.conf`
and run
```bash
echo 'ulimit -n 2048' | sudo tee -a /etc/profile
```
If you have Qt installed in an unusual directory, use `QT_PATH` variable (`SET (QT_PATH "your-path-to-qt")`). You can skip building tests
with `CMAKE_CONFIG=-DSKIP_TESTS` variable. You would need 1.5 GB of memory
to compile the `stats` module.