Commit cb4f57458e092dae0b66c8d5cc1ddb69a78ef678

Authored by Adeel Kazmi
1 parent 1e9295a9

Updated macOS instructions

Change-Id: Iaa0488361b4f340160d4484c61c2986e2edb3fff
Showing 1 changed file with 7 additions and 8 deletions
README.md
... ... @@ -171,20 +171,19 @@ vcpkg-script folder in the windows-dependencies repository.
171 171  
172 172 ## 5. Building for MacOS
173 173  
174   -Here it is expected that the environment variables are set accordingly to
175   -`dali-core/README.md`.
  174 +It is assumed that the DALi environment has been set up & that DALi Core, Adaptor & Toolkit have been built accordingly.
176 175  
177 176 To build the repository enter the 'build/tizen' folder:
178   -```bash
179   - $ cd dali-demo/build/tizen
  177 +```zsh
  178 +% cd dali-demo/build/tizen
180 179 ```
181 180 Then run the following command to set up the build:
182   -```bash
183   - $ cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINTERNATIONALIZATION=OFF -DENABLE_PKG_CONFIGURE=OFF
  181 +```zsh
  182 +% cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINTERNATIONALIZATION=OFF
184 183 ```
185 184 If a Debug build is required, then add `-DCMAKE_BUILD_TYPE=Debug`
186 185  
187 186 To build, run:
188   -```bash
189   - $ make install -j8
  187 +```zsh
  188 +% make install -j8
190 189 ```
... ...