FlatUI
An open source project by FPL.
 All Classes Namespaces Files Functions Variables Enumerations Groups Pages
Building for OS X

Version Requirements

Following are the minimum required versions of tools and libraries you need to build FlatUI for [OS X]:

Prerequisites

Building with Xcode

Firstly, the Xcode project needs to be generated using CMake:

  • Open a command line window.
  • Go to the FlatUI project directory.
  • Use CMake to generate the Xcode project.
cd flatui
cmake -G Xcode .

Then the project can be opened in Xcode and built:

  • Double-click on flatui/FlatUI.xcodeproj to open the project in Xcode.
  • Select "Product-->Build" from the menu.

The unit tests can be run from within Xcode:

  • Select an application Scheme, for example "angle_test-->My Mac 64-bit", from the combo box to the right of the "Run" button.
  • Click the "Run" button.

Building from the Command Line

To build:

  • Open a command line window.
  • Go to the FlatUI project directory.
  • Use CMake to generate the makefiles.
  • Run make.

For example:

cd flatui
cmake -G "Xcode" .
xcodebuild