File: linux_configure_static_qt.sh

package info (click to toggle)
ovito 0.9.5-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 24,824 kB
  • sloc: cpp: 61,876; ansic: 10,002; xml: 940; python: 523; sh: 43; makefile: 15
file content (36 lines) | stat: -rw-r--r-- 533 bytes parent folder | download
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
31
32
33
34
35
36
#!/bin/sh

# Configure Qt static build.

./configure \
	-release \
	-opensource \
	-static \
	-fast \
	-no-qt3support \
	-no-cups \
	-no-nis \
	-no-multimedia \
	-no-phonon \
	-no-phonon-backend \
	-no-webkit \
	-no-javascript-jit \
	-no-script \
	-no-scripttools \
	-no-declarative \
	-no-declarative-debug \
	-no-svg \
	-no-xmlpatterns \
	-qt-zlib \
	-qt-gif \
	-qt-libtiff \
	-qt-libpng \
	-qt-libmng \
	-qt-libjpeg \
	-no-openssl \
	-qt-sql-sqlite \
	-nomake demos -nomake examples \
	-prefix $HOME/progs/qtstatic

make install