summaryrefslogtreecommitdiff
path: root/INSTALL
blob: 906443a1f0eb103da9f8a20a6b4ec6a490a02a14 (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/org.tizen.browser

   or

   $ cmake ..


4. make & make install

  ex)

   $ make -j 2 && make install