-
Notifications
You must be signed in to change notification settings - Fork 152
/
README.TXT-version2
140 lines (116 loc) · 2.76 KB
/
README.TXT-version2
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
Changes can be found as follows:
cd pvbrowser
grep rlmurx-was-here *
grep PVB_ *
adjust:
./rlbuild_all.sh
./rlbuild_pvdevelop.sh
./rlbuild-pvbrowser-basic.sh
./rlbuild-pvbrowser-with-www.sh
pvbrowser/pvbrowser-with-www.pro #DEFINES += PVB_FOOTPRINT_OLD_VERSION_BEFORE_QWT62
pvbrowser/pvbrowser-with-basic-footprint.pro #DEFINES += PVB_FOOTPRINT_OLD_VERSION_BEFORE_QWT62
This is pvbrowser:
#######################################################
Make sure you have installed:
Linux:
g++ or clang
make
qt-5.x
//Windows:
// Qt SDK from qtsoftware
// MinGW
// Make sure you have not blocked port 5050 with your firewall
//OS-X:
// xcode
// X11User.pkg
// qt-4.x
OpenVMS:
CXX
#######################################################
The package includes the
compiled programs + libs + sourecode
Install with:
Linux:
tar -zxf pvb.tar.gz
cd pvb
./clean.sh
./rlbuild-all.sh
su
./install.sh
exit
//Windows:
// Use executables within
// pvb\win-mingw\bin
// or install from install-pvbrowser.exe available on our homepage
//
//OS-X:
// read Readme_for_Apple_Users.txt
Have a lot of fun !
Yours pvbrowser community
### Linux #############################################
build:
./rlbuild-all.sh
clean:
./clean.sh
install:
su
./install.sh
exit
uninstall:
su
cd /opt/pvb
./uninstall.sh
exit
run:
pvbrowser
pvdevelop
start example pvserver:
cd /opt/pvb/pvserver
./processviewserver -sleep=100
OR
cd /opt/pvb/pvsexample
./pvsexample -sleep=100
//Build with VTK:
// download VTK5.x from http://www.kitware.com/VTK
// download cmake (See: readme.html within VTK package)
// configure VTK with:
// build shared libraries: ON
// wrap Tcl: ON
// install VTK
// cd pvb/pvbrowser
// edit pvbrowser.pro and uncomment USE_VTK
// make clean
// make
// su
// cp pvbrowser /usr/local/bin/pvbrowservtk
// exit
### Windows ##########################################
//build:
// cd win-mingw
// # edit login.bat and define environment variables QTDIR and MINGWDIR
// # to point to the executables of qmake.exe, mingw32-make.exe and the C++ compiler
// login.bat
// build.bat
//
//run:
// pvbrowser
// pvbrowservtk
// pvdevelop
### OpenVMS ##########################################
build:
@vms_build.com
In SYLOGIN.COM or LOGIN.COM define symbol
rlsvgcat := disk:[path]rlsvgcat.exe
### Building and installing server components only ###
This is usefull for linux servers that do not have
an up to date Qt library and you want to use it as
server only. In this case only the libraries and
the command line utilities are build.
./clean.sh
./rlbuild-pvserver.sh
./rlbuild-rllib.sh
./rlbuild-language-lua.sh
su
./install.sh
exit
######################################################