From: Paul Wisbey Date: Tue, 25 Oct 2016 10:06:58 +0000 (+0100) Subject: Changed README to README.md X-Git-Tag: dali_1.2.12~6^2 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=commitdiff_plain;h=94e850baaef23523b6e0c56daefd7b34c50c8a2c Changed README to README.md Change-Id: Ie868dcd64b497d17d7725459c1badf5450981acd --- diff --git a/README b/README deleted file mode 100644 index 9b8ab0e..0000000 --- a/README +++ /dev/null @@ -1,58 +0,0 @@ -T.O.C. -====== - - 1. GBS Builds - 1.1. NON-SMACK Targets - 1.2. SMACK enabled Targets - 1.3. DEBUG Builds - 1.4. MOBILE Profile - 2. Building for Ubuntu desktop - 2.1. Minimum Requirements - 2.2. Building the Repository - 2.3. Building and executing test cases - - -1. GBS Builds -============= - -1.1. NON-SMACK Targets ----------------------- - - gbs build -A [TARGET_ARCH] - -1.2. SMACK enabled Targets --------------------------- - - gbs build -A [TARGET_ARCH] --define "%enable_dali_smack_rules 1" - -1.3. DEBUG Builds ------------------ - - gbs build -A [TARGET_ARCH] --define "%enable_debug 1" - -2. Building for Ubuntu desktop -============================== - -2.1. Minimum Requirements ------------------------- - - - Ubuntu 14.04 - - Environment created using dali_env script in dali-core repository - -2.2. Building the Repository ----------------------------- - -To build the repository enter the 'build/tizen' folder: - - cd dali-toolkit/build/tizen - -Then run the following commands: - - autoreconf --install - ./configure --prefix=$DESKTOP_PREFIX - make install -j8 - -2.3. Building and executing test cases --------------------------------------- - -See the README.md in dali-toolkit/automated-tests. diff --git a/README.md b/README.md new file mode 100644 index 0000000..0c20358 --- /dev/null +++ b/README.md @@ -0,0 +1,52 @@ + + +# Table of Contents + + * [Build Instructions](#build-instructions) + * [1. Building for Ubuntu desktop](#1-building-for-ubuntu-desktop) + * [Minimum Requirements](#minimum-requirements) + * [Building the Repository](#building-the-repository) + * [Building and executing test cases](#building-and-executing-test-cases) + * [2. GBS Builds](#2-gbs-builds) + * [NON-SMACK Targets](#non-smack-targets) + * [SMACK enabled Targets](#smack-enabled-targets) + * [DEBUG Builds](#debug-builds) + +# Build Instructions + +## 1. Building for Ubuntu desktop + +### Minimum Requirements + + - Ubuntu 14.04 or later + - Environment created using dali_env script in dali-core repository + +### Building the Repository + +To build the repository enter the 'build/tizen' folder: + + $ cd dali-toolkit/build/tizen + +Then run the following commands: + + $ autoreconf --install + $ ./configure --prefix=$DESKTOP_PREFIX + $ make install -j8 + +### Building and executing test cases + +See the README.md in dali-toolkit/automated-tests. + +## 2. GBS Builds + +### NON-SMACK Targets + + $ gbs build -A [TARGET_ARCH] + +### SMACK enabled Targets + + $ gbs build -A [TARGET_ARCH] --define "%enable_dali_smack_rules 1" + +### DEBUG Builds + + $ gbs build -A [TARGET_ARCH] --define "%enable_debug 1"