Fix build error.
[platform/core/uifw/dali-adaptor.git] / README.md
index d415a76..691f4ab 100644 (file)
--- a/README.md
+++ b/README.md
          * [Building and executing test cases](#building-and-executing-test-cases)
       * [2. GBS Builds](#2-gbs-builds)
          * [DEBUG Builds](#debug-builds)
-      * [3. Building for Emscripten](#3-building-for-emscripten)
-         * [Setup dali-env & build dali-core](#setup-dali-env--build-dali-core)
-         * [Build the minimal dali-adaptor](#build-the-minimal-dali-adaptor)
-         * [Using the Javascript Build](#using-the-javascript-build)
 
 # Build Instructions
 
@@ -62,33 +58,3 @@ See the README.md in dali-adaptor/automated-tests.
 
          $ gbs build -A [TARGET_ARCH] --define "%enable_debug 1"
 
-## 3. Building for Emscripten
-
-Currently the build for emscripten uses a minimal adaptor which does not support dali-toolkit.
-
-### 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.
-
-### 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
-
-### 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.