Initial removal of Text features
[platform/core/uifw/dali-core.git] / README
1 T.O.C.
2 ======
3
4  1.   GBS Builds
5  1.1. NON-SMACK Targets
6  1.2. SMACK enabled Targets
7  2.   Building for Ubuntu desktop
8  2.1. Minimum Requirements
9  2.2. Creating a DALi Environment
10  2.3. Building the Repository
11
12
13
14 1. GBS Builds
15 =============
16
17 1.1. NON-SMACK Targets
18 ----------------------
19
20  gbs build -A [TARGET_ARCH]
21
22 1.2. SMACK enabled Targets
23 --------------------------
24
25  gbs build -A [TARGET_ARCH] --define "%enable_dali_smack_rules 1"
26
27
28
29 2. Building for Ubuntu desktop
30 ==============================
31
32 2.1. Minimum Requirements
33 ------------------------
34
35  - Ubuntu 14.04
36
37 2.2. Creating a DALi Environment
38 -------------------------------
39
40 To build for desktop first ensure ALL sources are selected:
41  - Go to Ubuntu Settings and then to "Software & Updates"
42  - In the "Ubuntu Software" tab, ensure ALL software sources are ticked
43    (This is required because we install some community-maintained free & open-source software)
44
45 Then you can create a dali-env folder in your home folder with:
46
47  dali-core/build/scripts/dali_env -c
48
49 This will also download any dependencies that the dali repositories require.
50
51 You can save the environment variables to a file:
52
53  dali-env/opt/bin/scripts/dali_env -s > setenv
54
55 This process only needs to be done once.
56
57 Next source these variables:
58
59  . setenv
60
61 You will have to source these variables every time you open up a new terminal (or you can add to .bashrc if you prefer).
62
63 2.3. Building the Repository
64 ----------------------------
65
66 To build the repository enter the 'build/tizen' folder:
67
68  cd dali-core/build/tizen
69
70 Then run the following commands:
71
72  autoreconf --install
73  ./configure --prefix=$DESKTOP_PREFIX
74  make install -j8
75