# A buildsystem plugin for handling CMake based projects. # It enforces outside-source building. # # Copyright: © 2008-2009 Modestas Vainius # License: GPL-2+ package Debian::Debhelper::Buildsystem::cmake; use strict; use Debian::Debhelper::Dh_Lib; use base 'Debian::Debhelper::Buildsystem::makefile'; sub DESCRIPTION { "support for building CMake based packages (outside-source tree only)" } sub check_auto_buildable { my $this=shift; my ($action)=@_; my $ret = -e "CMakeLists.txt"; $ret &&= $this->SUPER::check_auto_buildable(@_) if $action ne "configure"; return $ret; } sub new { my $class=shift; my $this=$class->SUPER::new(@_); # Enforce outside-source tree builds. $this->enforce_outside_source_building(); return $this; } sub configure { my $this=shift; my @flags; # Standard set of cmake flags push @flags, "-DCMAKE_INSTALL_PREFIX=/usr"; push @flags, "-DCMAKE_C_FLAGS=$ENV{CFLAGS}" if (exists $ENV{CFLAGS}); push @flags, "-DCMAKE_CXX_FLAGS=$ENV{CXXFLAGS}" if (exists $ENV{CXXFLAGS}); push @flags, "-DCMAKE_LD_FLAGS=$ENV{LDFLAGS}" if (exists $ENV{LDFLAGS}); push @flags, "-DCMAKE_SKIP_RPATH=ON"; push @flags, "-DCMAKE_VERBOSE_MAKEFILE=ON"; $this->mkdir_builddir(); $this->doit_in_builddir("cmake", $this->get_rel2builddir_path(), @flags); } 1;