]> git.donarmstrong.com Git - debhelper.git/blob - Debian/Debhelper/Buildsystem/cmake.pm
Enable verbose ctest output on test failure
[debhelper.git] / Debian / Debhelper / Buildsystem / cmake.pm
1 # A debhelper build system class for handling CMake based projects.
2 # It prefers out of source tree building.
3 #
4 # Copyright: © 2008-2009 Modestas Vainius
5 # License: GPL-2+
6
7 package Debian::Debhelper::Buildsystem::cmake;
8
9 use strict;
10 use base 'Debian::Debhelper::Buildsystem::makefile';
11
12 sub DESCRIPTION {
13         "CMake (CMakeLists.txt)"
14 }
15
16 sub check_auto_buildable {
17         my $this=shift;
18         my ($step)=@_;
19         my $ret = -e $this->get_sourcepath("CMakeLists.txt");
20         $ret &&= $this->SUPER::check_auto_buildable(@_) if $step ne "configure";
21         return $ret;
22 }
23
24 sub new {
25         my $class=shift;
26         my $this=$class->SUPER::new(@_);
27         $this->prefer_out_of_source_building(@_);
28         return $this;
29 }
30
31 sub configure {
32         my $this=shift;
33         my @flags;
34
35         # Standard set of cmake flags
36         push @flags, "-DCMAKE_INSTALL_PREFIX=/usr";
37         push @flags, "-DCMAKE_VERBOSE_MAKEFILE=ON";
38
39         $this->mkdir_builddir();
40         $this->doit_in_builddir("cmake", $this->get_source_rel2builddir(), @flags, @_);
41 }
42
43 sub test {
44         my $this=shift;
45
46         $ENV{CTEST_OUTPUT_ON_FAILURE} = 1;
47         return $this->test(@_);
48 }
49
50 1