~ken-vandine/address-book-app/add_profile

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Building for desktop
====================

mkdir build
cd build
cmake ..
make

Run on desktop
==============

cd build
./src/app/address-book-app

Run the QML tests
=================

cd build
make test or ctest 

Run the Autopilot tests
=======================

cd build
make autopilot

Building for click
==================

To build for a click package configure cmake as:

mkdir build
cd build
cmake [path_to_this_location] -DCLICK_MODE=on \
    -DBZR_REVNO=$(cd [path_to_this_location]; bzr revno)
make DESTDIR=[package dir] install
click build [package dir]

This package can be installed by running:

pkcon install-local com.ubuntu.address-book_*.click