X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=README.md;h=42afb8dcd433afdf1e74fe31fd0883efe5579faa;hb=61535d6490b50037e1166690278dbdf2cb5b8380;hp=4bfe52af5fca96a713cac9a7bd1ee2c5b2837fdc;hpb=e1a6e0dc4287d41230dfa6e7e22877df6bfcf51a;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/README.md b/README.md index 4bfe52a..42afb8d 100644 --- a/README.md +++ b/README.md @@ -105,20 +105,19 @@ vcpkg-script folder in the windows-dependencies repository. ## 4. 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 has been built accordingly. To build the repository enter the 'build/tizen' folder: -```bash - $ cd dali-adaptor/build/tizen +```zsh +% cd dali-adaptor/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 -DINSTALL_CMAKE_MODULES=ON -DENABLE_PROFILE=MACOS -DPROFILE_LCASE=macos +```zsh +% cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINSTALL_CMAKE_MODULES=ON -DENABLE_PROFILE=MACOS -DPROFILE_LCASE=macos ``` If a Debug build is required, then add `-DCMAKE_BUILD_TYPE=Debug -DENABLE_DEBUG=ON` -To build run: -```bash - $ make install -j8 +To build, run: +```zsh +% make install -j8 ```