KUSP Installation Guide

KUSP Quick Install

The KUSP Quick Installation guide is meant for those familiar with CMake, Subversion, the KUSP source tree, and general Linux software installation methods. For a more detailed guide to KUSP installation, as well as information on adding new software to the KUSP source tree, refer to the KUSP Installation Guide and KUSP Developer CMake Tutorial.

Get the Source:

$ svn co https://subversion.ittc.ku.edu/svn/libertos/kusp-cmake/trunk kusp-cmake

Build KUSP:

$ cd <build-path>
$ cmake <source-path> -DCMAKE_INSTALL_PREFIX=<install-path>
$ make
$ make install

Update Environment Variables:

$ export LD_LIBRARY_PATH=<install-path>/lib:$LD_LIBRARY_PATH
$ export PATH=<install-path>/bin:$PATH

Table Of Contents

Previous topic

Welcome to CMake Support for KUSP Software’s documentation!

Next topic

KUSP Developer CMake Tutorial

This Page