summaryrefslogtreecommitdiff
path: root/INSTALL
blob: 3915badd7180ae013cd476bfc3ead464f30f1c60 (plain)
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
1. make the build directory

  ex)

   $ mkdir build


2. change the working directory to the build directory

  ex)

   $ cd build


3. run 'cmake'

  $ cmake ${SOURCE_DIR} -DCMAKE_INSTALL_PREFIX=/opt/apps/${PKGNAME}

  ex)

   $ cmake .. -DCMAKE_INSTALL_PREFIX=/opt/apps/${PKGNAME}

   or

   $ cmake ..


4. make & make install

  ex)

   $ make -j 2 && make install