Browse Source

Merge pull request #163 from lilianmoraru/master

Suggest optimized builds
master
probonopd 7 years ago
committed by GitHub
parent
commit
3182c36d66
  1. 8
      README.md

8
README.md

@ -97,9 +97,9 @@ install:
- source /opt/qt*/bin/qt*-env.sh - source /opt/qt*/bin/qt*-env.sh
script: script:
- qmake PREFIX=/usr - qmake CONFIG+=release PREFIX=/usr
- make -j$(nproc) - make -j$(nproc)
- make INSTALL_ROOT=appdir install ; find appdir/ - make INSTALL_ROOT=appdir -j$(nproc) install ; find appdir/
- wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" - wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
- chmod a+x linuxdeployqt*.AppImage - chmod a+x linuxdeployqt*.AppImage
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH - unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
@ -131,9 +131,9 @@ If `qmake` does not allow for `make install` or does not install the desktop fil
__CMake__ wants `DESTDIR` instead: __CMake__ wants `DESTDIR` instead:
``` ```
- cmake . -DCMAKE_INSTALL_PREFIX=/usr - cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
- make -j$(nproc) - make -j$(nproc)
- make DESTDIR=appdir install ; find appdir/ - make DESTDIR=appdir -j$(nproc) install ; find appdir/
``` ```
__autotools__ (the dinosaur that spends precious minutes "checking...") wants `DESTDIR` too but insists on an absolute link which we can feed it using readlink: __autotools__ (the dinosaur that spends precious minutes "checking...") wants `DESTDIR` too but insists on an absolute link which we can feed it using readlink:

Loading…
Cancel
Save