Update compilation authored by Martin Straka's avatar Martin Straka
......@@ -79,17 +79,17 @@ This will compile libisds (as a static and shared library) and its other depende
When you have all libraries (Qt5, libisds and dependencies) run the following commands. These must be run from a working desktop session on OS X as the scripts accesses some resources that aren't available on a plain terminal session (e.g. when logged-in via ssh).
``` shell
QT_VER=5.7.1 ./scripts/build_osx_dmgs.sh -d -s 10.12 --i386 --shared
QT_VER=5.7.1 ./scripts/build_macos_dmgs.sh -d -s 10.12 --i386 --shared
```
or
``` shell
QT_VER=5.9.6 ./scripts/build_osx_dmgs.sh -d -s 10.13 --x86_64 --shared
QT_VER=5.9.6 ./scripts/build_macos_dmgs.sh -d -s 10.13 --x86_64 --shared
```
or the modification of any of those command to build the desired target.
Occasionally it happens that the target .dmg file fails to build properly (because of some asynchronous actions). In such cases just re-run the command using the `-D` parameter:
``` shell
QT_VER=5.7.1 ./scripts/build_osx_dmgs.sh -D -s 10.12 --i386 --shared
QT_VER=5.7.1 ./scripts/build_macos_dmgs.sh -D -s 10.12 --i386 --shared
```
This will skip the compilation and will only build the package.
......
......