File: qt5-static-configure

package info (click to toggle)
dustrac 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,396 kB
  • sloc: cpp: 43,805; ansic: 30,075; sh: 121; xml: 79; python: 33; makefile: 11
file content (30 lines) | stat: -rwxr-xr-x 667 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/bash

#
# This for configuring static build of Qt5 itself, not the game.
#

PREFIX='/home/juzzlin/qt5'
./configure \
            -opensource \
            -confirm-license \
            -force-pkg-config \
            -fontconfig \
            -release \
            -static \
            -prefix $PREFIX \
            -no-icu \
            -opengl desktop \
            -no-glib \
            -accessibility \
            -nomake examples \
            -nomake tests \
            -qt-zlib \
            -qt-libpng \
            -qt-libjpeg \
            -qt-sql-sqlite \
            -qt-xcb \
            -qt-pcre \
            -pulseaudio \
            -v