proper highlighting of code in README
This commit is contained in:
parent
c15bfa85fd
commit
8925131f5b
32
README.build
32
README.build
|
@ -9,7 +9,9 @@ This repository contains all of the non-* software.
|
||||||
If you just cloned the non repository or just executed git pull, then
|
If you just cloned the non repository or just executed git pull, then
|
||||||
you should also run
|
you should also run
|
||||||
|
|
||||||
git submodule update --init
|
#+BEGIN_SRC
|
||||||
|
git submodule update --init
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
to pull down the latest NTK code required by Non. Git does *not* do
|
to pull down the latest NTK code required by Non. Git does *not* do
|
||||||
this automatically.
|
this automatically.
|
||||||
|
@ -19,24 +21,30 @@ this automatically.
|
||||||
If you don't have NTK installed system-wide (which isn't very likely
|
If you don't have NTK installed system-wide (which isn't very likely
|
||||||
yet) you *MUST* begin the build process by typing:
|
yet) you *MUST* begin the build process by typing:
|
||||||
|
|
||||||
cd lib/ntk
|
#+BEGIN_SRC
|
||||||
./waf configure
|
cd lib/ntk
|
||||||
./waf
|
./waf configure
|
||||||
|
./waf
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
Once NTK has been built you must install it system-wide before
|
Once NTK has been built you must install it system-wide before
|
||||||
attempting to build the non-* programs.
|
attempting to build the non-* programs.
|
||||||
|
|
||||||
To install NTK type:
|
To install NTK type:
|
||||||
|
|
||||||
su -c './waf install'
|
#+BEGIN_SRC
|
||||||
|
su -c './waf install'
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** Build all projects
|
** Build all projects
|
||||||
|
|
||||||
Typing:
|
Typing:
|
||||||
|
|
||||||
./waf configure
|
#+BEGIN_SRC
|
||||||
./waf
|
./waf configure
|
||||||
su -c './waf install'
|
./waf
|
||||||
|
su -c './waf install'
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
from the base of the checkout of the Non git repository will build and
|
from the base of the checkout of the Non git repository will build and
|
||||||
install all of the non-* programs together.
|
install all of the non-* programs together.
|
||||||
|
@ -45,7 +53,9 @@ install all of the non-* programs together.
|
||||||
|
|
||||||
Typing:
|
Typing:
|
||||||
|
|
||||||
./waf configure --project=[timline|sequencer|mixer|session-manager]
|
#+BEGIN_SRC
|
||||||
./waf
|
./waf configure --project=[timline|sequencer|mixer|session-manager]
|
||||||
su -c './waf install'
|
./waf
|
||||||
|
su -c './waf install'
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue