Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

For the most part, the surpport for Mac OS is only to allow developers to easily test if they choose to us a non-Linux environment for development.  It is NOT recommended that RMR based applications be run on a Mac OS based system for production.


Configure and Build RMR

RMR is built via CMake which must first be executed to set the configuration options for the intended build. Specifically this allows the user to select the type of package to be produced (development or production), and to specify options such as where to install library and header files.  

To build:

  1. Clone the repo and switch to the top level directory
  2. Create the .build directory (mkdir .build)
  3. Switch to the .build directory (cd .build)
  4. Configure with CMake (see note on options below)
  5. Build and install  (make install(See examples below)

CMake Configuration Options

...