Skip to content

Commit bda0143

Browse files
author
Xavi Garcia Mena
committed
Added INSTALL, README, TODO files
1 parent 8550449 commit bda0143

File tree

3 files changed

+65
-0
lines changed

3 files changed

+65
-0
lines changed

INSTALL

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
#
2+
# Copyright © 2014 Canonical Ltd.
3+
#
4+
# This program is free software: you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License version 3,
6+
# as published by the Free Software Foundation.
7+
#
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public License
14+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
15+
#
16+
# Authored by: Pete Woods <[email protected]>
17+
# Xavi Garcia <[email protected]>
18+
#
19+
20+
21+
Build dependencies
22+
------------------
23+
24+
See debian/control for the list of packages required to build and test the code.
25+
26+
27+
Building the code
28+
-----------------
29+
30+
The simplest case is:
31+
32+
$ mkdir build
33+
$ cd build
34+
$ cmake ..
35+
$ make
36+
37+
By default, the code is built in release mode. To build a debug version, use
38+
39+
$ mkdir builddebug
40+
$ cd builddebug
41+
$ cmake -DCMAKE_BUILD_TYPE=debug ..
42+
$ make

README

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Copyright © 2014 Canonical Ltd.
3+
#
4+
# This program is free software: you can redistribute it and/or modify it
5+
# under the terms of the GNU Lesser General Public License version 3,
6+
# as published by the Free Software Foundation.
7+
#
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public License
14+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
15+
#
16+
# Authored by: Pete Woods <[email protected]>
17+
# Xavi Garcia <[email protected]>
18+
#
19+
20+
This is a library to test GMenuModel structures.
21+
22+
For instructions on how to build the code, see the INSTALL file.

TODO

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add unit tests.

0 commit comments

Comments
 (0)