summaryrefslogtreecommitdiffstats
path: root/lib/Debian/Debhelper/Buildsystem/qmake_qt4.pm
blob: 60d9084c91e8a36355c2540ab5a77cb8bf05292e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Debian::Debhelper::Buildsystem::qmake_qt4;

use strict;
use warnings;
use parent qw(Debian::Debhelper::Buildsystem::qmake);

sub DESCRIPTION {
	"qmake for QT 4 (*.pro)";
}

sub _qmake {
	return 'qmake-qt4';
}

1