X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=README.md;h=3395a032a68c8a73c42fd423d180260de68b06c8;hb=be1696c6783e8dba628338211e4931df52987abf;hp=97bbf31357af2e1b040360c175bdcaff8360cb85;hpb=e159f58b31abcc27d9d3d4e263501d3f336ec4a9;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/README.md b/README.md index 97bbf31..3395a03 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,11 @@ * [SMACK enabled Targets](#smack-enabled-targets) * [DEBUG Builds](#debug-builds) * [3. Building for MS Windows](#3-building-for-ms-windows) - * Build with the Visual Studio project. - * Build with CMake. + * Build with the Visual Studio project + * Build with CMake + * [4. Building for macOS](#4-building-for-macos) + * [macOS Dependencies](#macos-dependencies) + * [Build the repository](#build-the-repository) # Build Instructions @@ -24,6 +27,7 @@ - Ubuntu 16.04 or later - GCC version 9 + - Cmake version 3.8.2 or later DALi requires a compiler supporting C++17 features. @@ -133,3 +137,31 @@ vcpkg-script folder in the windows-dependencies repository. - CMAKE_INSTALL_PREFIX ---> Were DALi is installed. - INSTALL_CMAKE_MODULES ---> Whether to install the CMake modules (Used by the CMake command find_package() to find previously installed libraries). - ENABLE_DEBUG ---> Whether to build with debug enabled. + +## 4. Building for macOS + +### macOS Dependencies + +Ensure you have followed the instructions in the macos-dependencies repo [here](https://github.com/dalihub/macos-dependencies) +to create the DALi environment on the macOS. +You can clone it using: +```zsh +% git clone https://github.com/dalihub/macos-dependencies.git +``` + +### Build the repository + +To build the repository enter the 'build/tizen' folder: +```zsh +% cd dali-core/build/tizen +``` +Then run the following command to set up the build: +```zsh +% cmake -DCMAKE_INSTALL_PREFIX=$DESKTOP_PREFIX -DCMAKE_TOOLCHAIN_FILE=$VCPKG_FOLDER/scripts/buildsystems/vcpkg.cmake -DINSTALL_CMAKE_MODULES=ON +``` +If a Debug build is required, then add `-DCMAKE_BUILD_TYPE=Debug -DENABLE_DEBUG=ON` + +To build run: +```zsh +% make install -j8 +```