~albaguirre/unity-mir/remove-usleep-call

« back to all changes in this revision

Viewing changes to README

  • Committer: Gerry Boland
  • Date: 2014-02-03 20:47:24 UTC
  • mto: This revision was merged to the branch mainline in revision 175.
  • Revision ID: gerry.boland@canonical.com-20140203204724-p4nhbrcw8e5bk2eu
Update README for cmake instructions

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
2. Building
13
13
-----------
14
14
 
15
 
  To compile Unity-Mir, create the makefiles with qmake and build with
 
15
  To compile Unity-Mir, create the makefiles with cmake and build with
16
16
  make:
17
17
 
18
 
    $ qmake
 
18
    $ cmake . -DCMAKE_INSTALL_PREFIX=/usr
19
19
    $ make
20
20
 
21
21
  By default, Unity-Mir compiles a release build. To compile a debug
22
 
  build, the following qmake command should be used:
 
22
  build, the following cmake command should be used:
23
23
 
24
 
    $ qmake CONFIG+=debug
 
24
    $ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug