X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=README.md;h=29c195f28ea2f802d74587160c626e35d3370f8e;hb=502ed84e398e7f2d31712bfc3584e61fd20f8d49;hp=c27d776a9de992ddfc250801354e6d8313d6077b;hpb=1e9295a9beaeb0b1b35b09adbe8d4d8a6a2e3f84;p=platform%2Fcore%2Fuifw%2Fdali-demo.git diff --git a/README.md b/README.md index c27d776..29c195f 100644 --- a/README.md +++ b/README.md @@ -171,20 +171,19 @@ vcpkg-script folder in the windows-dependencies repository. ## 5. Building for MacOS -Here it is expected that the environment variables are set accordingly to -`dali-core/README.md`. +It is assumed that the DALi environment has been set up & that DALi Core, Adaptor & Toolkit have been built accordingly. To build the repository enter the 'build/tizen' folder: -```bash - $ cd dali-demo/build/tizen +```zsh +% cd dali-demo/build/tizen ``` Then run the following command to set up the build: -```bash - $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINTERNATIONALIZATION=OFF -DENABLE_PKG_CONFIGURE=OFF +```zsh +% cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINTERNATIONALIZATION=OFF ``` If a Debug build is required, then add `-DCMAKE_BUILD_TYPE=Debug` To build, run: -```bash - $ make install -j8 +```zsh +% make install -j8 ```