blob: 29dec039484c1fbed9a7ff596897fc0f7e531fa5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@anchor{overview}
@chapter Build Overview
The build system has several
This chapter is for building from a terminal/shell environment in as few commands as possible. If more flexibility is required you should skip this chapter and jump to @ref{process}.
@example
@COMMAND.checkout{}
./configure --launch
@end example
The special option @command{--launch} selected launch mode and performs the following steps:
@itemize
@item assert scratch directory @file{build/} does not exist
@item create scratch directory @file{build/}
@item change to directory @file{build/}
@item launch @command{make}
@item capture build output to @file{build/log.txt}
@item echo build output
@end itemize
|