blob: c2c313e301d700dd52f2e7d2a8ac1208a3fda234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
WeeChat - Installation instructions
===================================
You can build WeeChat with autotools or cmake.
- with autotools:
./autogen.sh (for cloned git repository only)
./configure ("./configure --help" for options)
make
make install (as root for installation in system directories)
- with cmake:
mkdir build
cd build
cmake .. ("ccmake .." for options)
make
make install (as root for installation in system directories)
See AUTHORS for support, feel free to contact us for any problem.
|