X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=README;h=49bd8fc61baf684d6860dae6f15917bb7b3c5286;hb=d84fbc47ca45e6570f5b9cd9dbbcba9750a2b4db;hp=ceb23a68c17cb77be72681c77c5a18f18227d524;hpb=81d8438aa10c6e112273bc7aef848b38a6bda1af;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/README b/README index ceb23a6..49bd8fc 100644 --- a/README +++ b/README @@ -2,34 +2,22 @@ T.O.C. ====== 1. GBS Builds - 1.1. COMMON Profile - 1.2. MOBILE Profile - 1.3. WEARABLE Profile 2. Building for Ubuntu desktop 2.1. Minimum Requirements 2.2. Building the Repository - + 2.3. Build target options + 2.4. Building and executing test cases + 3. Building for Emscripten + 3.1. Setup dali-env & build dali-core + 3.2. Build the minimal dali-adaptor + 3.3. Using the Javascript Build 1. GBS Builds ============= -1.1. COMMON Profile -------------------- - gbs build -A [TARGET_ARCH] -1.2. MOBILE Profile -------------------- - - gbs build -A [TARGET_ARCH] --spec dali-adaptor-mobile.spec - -1.3. WEARABLE Profile ---------------------- - - gbs build -A [TARGET_ARCH] --spec dali-adaptor-wearable.spec - - 2. Building for Ubuntu desktop ============================== @@ -53,3 +41,62 @@ Then run the following commands: ./configure --prefix=$DESKTOP_PREFIX --enable-profile=UBUNTU --enable-gles=20 make install -j8 + +2.3. Build target options +------------------------- + +OpenGL ES context: + +When building, the OpenGL ES version of the target should be specified. + +Valid version options are 20, 30, 31 + +With configure: +Add: --enable-gles=X + +With gbs: +Add to the gbs build line: --define "%target_gles_version X" + +2.4. Building and executing test cases +-------------------------------------- + +See the README.md in dali-adaptor/automated-tests. + + +3. Building for Emscripten +-------------------------- + +Currently the build for emscripten uses a minimal adaptor which does not support dali-toolkit. + + +3.1. Setup dali-env & build dali-core +------------------------------------- + + The build requires the Emscripten SDK, this is installed automatically by running dali_env with the correct parameters. + dali_env is part of the dali-core repository. + Please see the README within dali-core to setup dali_env and build dali-core. + + +3.2. Build the minimal dali-adaptor +----------------------------------- + + Use the build.sh script build adaptor. + This uses emscriptens emcc to compile byte code to javascript (full OpenGL ES support with stb-image loading library and cpp bindings). + Note: Please view the build.sh script for debug build options. + + # cd ./build/emscripten + # ./build.sh + + +3.3. Using the Javascript Build +------------------------------- + + The build will create 1 main Javascript artifact, and its html counterpart; dali-emscripten.js + + This is required by any dali JS app, and must be located in the same directory as the app JS in order for the browser to find it. + + After the build, the necessary artifacts (which include dali-wrapper.js) will be placed in the dali-env directory under opt/share/emscripten: + + dali-env/opt/share/emscripten + + If dali-demo is built, any JS examples will also be placed in this directory, so they are ready to run.