-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
48 lines (28 loc) · 1.08 KB
/
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
40
41
42
43
44
45
46
47
48
W E B S M S . C O M C + + T O O L K I T
Preparation
-----------
The websms.com toolkit uses Jansson and libcurl, so you have to install the
development packages for your distribution. You also need make and a compiler.
For example, in Ubuntu, just execute following command:
sudo apt-get install build-essential libcurl4-openssl-dev libjansson-dev
Installation
------------
Just run the following two commands:
make
sudo make install
The library and the header files will be installed under /usr/local/. You can
change the destination by adding PREFIX to the install command:
sudo make PREFIX=/usr install
Uninstall
---------
sudo make uninstall
If you used a PREFIX for installation, you have to add it here too:
sudo make PREFIX=/usr uninstall
Other information
-----------------
The library was tested under Ubuntu 12.10, using libcurl 7.27 and
Jansson 2.3.1.
Whats next?
-----------
Details can be found in the toolkit documentation (doc/sdk/index.html).
For a quick start, check out the examples (examples/).