summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/qmake_qt4.pm
blob: d5bac58525364111eda4e20812ff9f6346d1f76e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package Debian::Debhelper::Buildsystem::qmake_qt4;

use strict;
use warnings;
use Debian::Debhelper::Dh_Lib qw(error);
use base 'Debian::Debhelper::Buildsystem::qmake';

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

sub configure {
	my $this=shift;
	$Debian::Debhelper::Buildsystem::qmake::qmake="qmake-qt4";
	$this->SUPER::configure(@_);
}

1