2012-11-14 10:54:03 +01:00
|
|
|
# -*- mode: org -*-
|
|
|
|
|
|
|
|
* Non-things build instructions
|
2012-08-07 05:03:30 +02:00
|
|
|
|
|
|
|
This repository contains all of the non-* software.
|
|
|
|
|
2012-11-14 10:54:03 +01:00
|
|
|
If you don't have NTK installed system-wide (which isn't very likely
|
|
|
|
yet) you *MUST* begin the build process by typing:
|
|
|
|
|
|
|
|
cd lib/ntk
|
|
|
|
./waf configure
|
|
|
|
./waf
|
|
|
|
|
|
|
|
Once NTK has been built you must install it system-wide before
|
|
|
|
attempting to build the non-* programs.
|
|
|
|
|
|
|
|
To install NTK type:
|
|
|
|
|
|
|
|
su -c './waf install'
|
|
|
|
|
|
|
|
** Build all projects
|
|
|
|
|
|
|
|
Typing:
|
|
|
|
|
|
|
|
./waf configure
|
|
|
|
./waf
|
|
|
|
./waf su -c './waf install'
|
|
|
|
|
|
|
|
from the base of the checkout of the Non git repository will build and
|
|
|
|
install all of the non-* programs together.
|
|
|
|
|
|
|
|
** Build a single project
|
|
|
|
|
|
|
|
Typing:
|
2012-10-30 19:52:36 +01:00
|
|
|
|
2012-11-14 10:54:03 +01:00
|
|
|
./waf configure --project=[timline|sequencer|mixer|session-manager]
|
|
|
|
./waf
|
|
|
|
./waf su -c './waf install'
|
2012-10-30 19:52:36 +01:00
|
|
|
|