-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
39 lines (27 loc) · 984 Bytes
/
INSTALL
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
This package provides an easy way to build Wt and all its
dependencies, to try out the library and run its examples.
0. When checking out from git
-----------------------------
$ aclocal
$ autoconf
I. Building and installing Wt and its dependencies
--------------------------------------------------
To build Wt and all its dependencies, you need to run:
$ ./configure --prefix=$PWD/install --with-wt-version=3.2.3
$ make all
You can chose any wt version or 'git' for using the latest git development
version.
Running just 'make' will show the different targets
If you want to install Wt in a place that requires privileges, and do not
want to use these privileges when simply building, you can break it down in
the following parts:
$ ./configure --prefix=/opt/wt/
$ make deps
$ sudo make deps-install
$ make wt
$ sudo make wt-install
II. Running the examples
------------------------
To run one of the examples:
./run-example
./run-example mandelbrot