Remove RenderSurface from Core
[platform/core/uifw/dali-core.git] / README.md
index 98db879..b78598d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -13,6 +13,7 @@
          * [NON-SMACK Targets](#non-smack-targets)
          * [SMACK enabled Targets](#smack-enabled-targets)
          * [DEBUG Builds](#debug-builds)
+      * [3. Building for MS Windows](#3-building-for-ms-windows)
 
 # Build Instructions
 
@@ -63,26 +64,15 @@ To build the repository enter the 'build/tizen' folder:
 
          $ cd dali-core/build/tizen
 
-Then run the following commands:
+Then run the following command to set up the build:
 
-         $ autoreconf --install
-         $ ./configure --prefix=$DESKTOP_PREFIX
-         $ make install -j8
-
-### 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
+         $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX .
 
-With configure:
-Add: *--enable-gles=X*
+If a Debug build is required, then add -DCMAKE_BUILD_TYPE=Debug
 
-With gbs:
-Add to the gbs build line: *--define "%target_gles_version X"*
+To build run:
 
+         $ make install -j8
 
 ### Building and executing test cases
 
@@ -102,3 +92,13 @@ See the README.md in dali-core/automated-tests.
 
          $ gbs build -A [TARGET_ARCH] --define "%enable_debug 1"
 
+## 3. Building for MS Windows
+
+Third party dependencies are built using vcpkg. Instructions on how to install vcpkg can be found in the
+vcpkg-script folder in the windows-dependencies repository.
+
+- Download the windows-dependencies repository from DaliHub
+
+         $ git clone https://github.com/dalihub/windows-dependencies.git
+
+- Read the README.md and vcpkg-script/Readme.md files for more instructions on how to install and build the third-party dependencies.
\ No newline at end of file