~ubuntu-branches/ubuntu/wily/psi/wily

« back to all changes in this revision

Viewing changes to qcm/recursiveprl.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
-----BEGIN QCMOD-----
 
3
name: recursively generate prl files
 
4
-----END QCMOD-----
 
5
*/
 
6
 
 
7
//----------------------------------------------------------------------------
 
8
// qc_recursiveprl
 
9
//----------------------------------------------------------------------------
 
10
class qc_recursiveprl : public ConfObj
 
11
{
 
12
public:
 
13
        qc_recursiveprl(Conf *c) : ConfObj(c) {}
 
14
        QString name() const { return "recursively generate prl files"; }
 
15
        QString shortname() const { return "recursiveprl"; }
 
16
        QString checkString() const { return QString(); }
 
17
        bool exec()
 
18
        {
 
19
                QStringList args;
 
20
                args += "-prl";
 
21
                args += "-r";
 
22
                args += qc_getenv("QC_PROFILE");
 
23
                conf->doCommand(conf->qmake_path, args);
 
24
                return true;
 
25
        }
 
26
};