Skip to content
Charlie Leech edited this page Mar 1, 2017 · 2 revisions

Welcome to the PRiME Framework wiki!

Deployment Instructions

CMake is used to enable cross-platform deployment and compilation of the program.

  • Clone git repo to the platform: git clone https://github.com/PRiME-project/PRiME_Framework.git
  • Enter the base directory: cd PRiME_Framework.
  • Create and enter build directory: mkdir build && cd build
  • Invoke cmake to build the makefile: cmake .. (Two dots are required in order to reference the base dir)
  • Compile the project with the generated makefile: make -jN.
  • Run the RTM from the build directory: ./rtm
  • Run the UI from the ui directory: python ui.py
  • Run the logger from the logger directory: python logger.py

Clone this wiki locally