Immortal emitter is now mortal as it should be.
[platform/core/uifw/dali-demo.git] / README.md
1 <img src="https://dalihub.github.io/images/DaliLogo320x200.png">
2
3 # Table of Contents
4
5    * [Build Instructions](#build-instructions)
6       * [1. Building for Ubuntu desktop](#1-building-for-ubuntu-desktop)
7          * [Minimum Requirements](#minimum-requirements)
8          * [Building the Repository](#building-the-repository)
9          * [DEBUG Builds](#debug-builds)
10       * [2. GBS Builds](#2-gbs-builds)
11          * [NON-SMACK Targets](#non-smack-targets)
12          * [SMACK enabled Targets](#smack-enabled-targets)
13          * [DEBUG Builds](#debug-builds-1)
14       * [3. Building for Android](#3-android-builds)
15       * [4. Building for MS Windows](#4-windows-builds)
16          * [Build with the Visual Studio project](#build-with-the-visual-studio-project)
17          * [Build with CMake](#build-with-cmake)
18       * [5. Building for MacOS](#5-building-for-macos)
19    * [Creating an Example](#creating-an-example)
20
21 # Build Instructions
22
23 ## 1. Building for Ubuntu desktop
24
25 ### Requirements
26
27  - Ubuntu 16.04 or later
28  - Environment created using dali_env script in dali-core repository
29  - GCC version 9
30  - Cmake version 3.8.2 or later
31
32 DALi requires a compiler supporting C++17 features.
33
34 ### Building the Repository
35
36 To build the repository enter the 'build/tizen' folder:
37
38          $ cd dali-demo/build/tizen
39
40 Then run the following commands:
41
42          $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX .
43          $ make install -j8
44
45 ### DEBUG Builds
46
47 Specify a debug build when building for desktop by passing the following parameter to cmake:
48
49          $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_BUILD_TYPE=Debug .
50
51 Before running make install as normal:
52
53          $ make install -j8
54
55 ### Build Only specific sample
56
57 You can set the sample's name and can build that sample only. For example, If you want to build 'hello-world',
58
59          $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DBUILD_EXAMPLE_NAME=hello-world
60          $ make install -j9
61
62 ## 2. GBS Builds
63
64 ### NON-SMACK Targets
65
66          $ gbs build -A [TARGET_ARCH]
67
68 ### SMACK enabled Targets
69
70          $ gbs build -A [TARGET_ARCH] --define "%enable_dali_smack_rules 1"
71
72 ### DEBUG Builds
73
74          $ gbs build -A [TARGET_ARCH] --define "%enable_debug 1"
75
76 ### Raspberry Pi builds
77
78          $ gbs build -A [TARGET_ARCH] --define "%rpi_style 1"
79
80 ### Build specific sample only
81
82          $ gbs build -A [TARGET_ARCH] --define "build_example_name hello-world"
83
84 ## 3. Building for Android
85
86 ### Requirements
87
88  - Ubuntu 16.04 or later
89  - Android DALi dependencies
90  - If you are behind a proxy, please set up the "http_proxy" and "https_proxy" environment variables appropriately
91  - Clone dali-core, dali-adaptor, dali-toolkit & android-dependencies to the same folder as dali-demo
92    - Android dependencies can be cloned from: https://github.com/dalihub/android-dependencies
93
94 ### Building the Repository
95 To build the repository enter the 'build/android' folder:
96
97          $ cd dali-demo/build/android
98
99 Then run the following command:
100
101          $ ./build.sh
102
103 For debug build:
104
105          $ DEBUG=1 ./build.sh
106
107 To debug from Android Studio set Android DALi enviroment using setenv script in 'build/android' and launch Android Studio from the enviroment:
108
109          $ . setenv
110          $ <path/to/androidstudio>/bin/studio.sh
111
112 To clean the build:
113
114          $ ./build.sh clean
115
116 To install apks:
117
118          $ adb install -r ./app/build/outputs/apk/debug/dali-demo-debug.apk
119          $ adb install -r ./app/build/outputs/apk/release/dali-demo-release.apk
120
121 Manually granting permission for accessing Storage before running the demo
122          1. Long press the DALi demo app icon => App Info
123          2. Permissions => Storage => Enable
124
125 ## 4. Building for MS Windows
126
127 Third party dependencies are built using vcpkg. Instructions on how to install vcpkg can be found in the
128 vcpkg-script folder in the windows-dependencies repository.
129
130 - Download the windows-dependencies repository from DaliHub
131
132          $ git clone https://github.com/dalihub/windows-dependencies.git
133
134 - Read the windows-dependencies/vcpkg-script/Readme.md file for more instructions on how to build and install the third-party dependencies.
135
136 ### Build with the Visual Studio project
137   Read the windows-dependencies/README.md file for more instructions on how to build and run DALi for MS Windows.
138
139 ### Build with CMake
140
141   * Requirements
142     It's required the version 3.12.2 of CMake and a Git Bash Shell.
143
144   * Notes and troubleshoting:
145     It should be possible to use the MS Visual studio Developer Command Prompt (https://docs.microsoft.com/en-us/dotnet/framework/tools/developer-command-prompt-for-vs) to build DALi from the command line.
146     However, the CMake version installed with MS Visual Studio 2017 is a bit out of date and some VCPKG modules require a higher version.
147     This instructions have been tested with CMake 3.12.2 on a Git Bash shell.
148
149   * Define an environment variable to set the path to the VCPKG folder
150
151     $ export VCPKG_FOLDER=C:/Users/username/Workspace/VCPKG_TOOL
152
153   * Define an environment variable to set the path where DALi is going to be installed.
154
155     $ export DALI_ENV_FOLDER=C:/Users/username/Workspace/dali-env
156
157   * Execute the following commands to create the makefiles, build and install DALi.
158
159     $ cmake -g Ninja . -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/vcpkg/scripts/buildsystems/vcpkg.cmake -DENABLE_PKG_CONFIGURE=OFF -DINTERNATIONALIZATION=OFF -DCMAKE_INSTALL_PREFIX=$DALI_ENV_FOLDER
160     $ cmake --build . --target install
161
162   * Options:
163     - CMAKE_TOOLCHAIN_FILE  ---> Needed to find packages installed by VCPKG.
164     - ENABLE_PKG_CONFIGURE  ---> Whether to install pkg configure files (not currently working on MS Windows. CMake modules used instead).
165     - INTERNATIONALIZATION  ---> Whether to generate and install internazionalization '.po' Portable Object files.
166     - CMAKE_INSTALL_PREFIX  ---> Were DALi is installed.
167     - ENABLE_DEBUG          ---> Whether to build with debug enabled.
168     - BUILD_EXAMPLE_NAME    ---> The name of sample what you want to build. To reduce the memory of rpm file, we didn't copy resources now.
169
170   * If dali-toolkit has been compiled with the USE_DEFAULT_RESOURCE_DIR option disabled then is needed to set global environment variables in order to find the default toolkit resources.
171
172     i.e
173     $ setx DALI_ENV_FOLDER C:/Users/username/dali-env
174     $ setx DALI_IMAGE_DIR $DALI_ENV_FOLDER/share/dali/toolkit/images/
175     $ setx DALI_SOUND_DIR $DALI_ENV_FOLDER/share/dali/toolkit/sounds/
176     $ setx DALI_STYLE_DIR $DALI_ENV_FOLDER/share/dali/toolkit/styles/
177     $ setx DALI_STYLE_IMAGE_DIR $DALI_ENV_FOLDER/share/dali/toolkit/styles/images/
178     $ setx DALI_DATA_READ_ONLY_DIR $DALI_ENV_FOLDER/share/dali/
179
180 ## 5. Building for MacOS
181
182 It is assumed that the DALi environment has been set up & that DALi Core, Adaptor & Toolkit have been built accordingly.
183
184 To build the repository enter the 'build/tizen' folder:
185 ```zsh
186 % cd dali-demo/build/tizen
187 ```
188 Then run the following command to set up the build:
189 ```zsh
190 % cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINTERNATIONALIZATION=OFF
191 ```
192 If a Debug build is required, then add `-DCMAKE_BUILD_TYPE=Debug`
193
194 To build, run:
195 ```zsh
196 % make install -j8
197 ```
198
199 # Creating an Example
200
201 - Make a directory in the `examples` directory. Only one example will be created per directory.
202 - The executable installed will have a `.example` appended to it, e.g. a `blocks` directory produces `blocks.example`.
203 - Add all source files for the required example in this directory.
204 - Modify `com.samsung.dali-demo.xml` to include your example so that it can be launched on target.
205 - No changes are required to the make system as long as the above is followed, your example will be automatically built & installed.
206 - Add a key handler so that the `ESC` or `Back` keys can be used to quit the application.
207 - Depending on the nature of what you are demonstrating, add a launcher line to either:
208   - `demo/dali-demo.cpp`: for graphical showcase demos.
209   - `examples-reel/dali-examples-reel.cpp`: generic examples of how to use various features.
210   - `tests-reel/dali-tests-reel.cpp`: for testing purposes.
211 - Add 2 lines to `shared/dali-demo-strings.h` for the title of your application, please keep in alphabetic order,
212 - Add as many translations of the title as possible to the files in `resources/po`. Currently, this only works on Ubuntu.
213 - In each example folder, create a README.md with images and a description of what the example is demonstrating.
214   Look at [this](examples/particle-system/README.md) for reference.