~alan-griffiths/mir/another-acceptance-test-uses-mir-Server-API

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Alan Griffiths
  • Date: 2012-10-28 15:04:56 UTC
  • mto: This revision was merged to the branch mainline in revision 199.
  • Revision ID: alan@octopull.co.uk-20121028150456-dzo8zsgp9ix0y941
MoreĀ docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Mir hacking guide
 
2
=================
 
3
 
 
4
Building mir
 
5
 
 
6
Mir is built using cmake. There are other options, but here's one way to
 
7
build the system:
 
8
 
 
9
  $ mkdir build
 
10
  $ cd build
 
11
  $ cmake ..
 
12
  $ make -j 8
 
13
  $ ctest
 
14
 
 
15
 
 
16
Coding mir
 
17
 
 
18
There's a coding style guide in the guides subdirectory. To build it into an
 
19
html file:
 
20
 
 
21
  $ make guides
 
22
 
 
23
 
 
24
Documentation
 
25
 
 
26
There are design notes and an architecture diagram (.dia) in the design
 
27
subdirectory.
 
28
 
 
29
 
 
30
Getting mir
 
31
 
 
32
If you're reading this file then you've probably solved this one. ;)
 
33
 
 
34
However, for completeness mir is a project on LaunchPad (https://launchpad.net/mir)
 
35
to grab a copy use the command:
 
36
 
 
37
  $ bzr branch lp:mir
 
38