File: HACKING

package info (click to toggle)
mediascanner2 0.118-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,448 kB
  • sloc: cpp: 9,479; ansic: 2,303; sh: 26; makefile: 23; xml: 12
file content (22 lines) | stat: -rw-r--r-- 617 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Building the code
-----------------

The list of packages required to build mediascanner can be found in
the Build-Depends stanza of the debian/control.in file.  In addition
to those packages, you should install "qt5-default" to ensure that the
Qt 5.x versions of build tools are used in preference to the Qt 4.x
versions.

The software can then be built with the following commands:

    $ mkdir build
    $ cd build
    $ cmake ..
    $ make

The tests can then be run using:

    $ make test

Note that "make test" will not trigger a rebuild, so it is necessary
to rerun "make" first if any code has been changed.