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

« back to all changes in this revision

Viewing changes to qcm/tests.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: Tests
4
 
-----END QCMOD-----
5
 
*/
6
 
 
7
 
//----------------------------------------------------------------------------
8
 
// qc_tests
9
 
//----------------------------------------------------------------------------
10
 
class qc_tests : public ConfObj
11
 
{
12
 
public:
13
 
        qc_tests(Conf *c) : ConfObj(c) {}
14
 
        QString name() const { return "tests"; }
15
 
        QString shortname() const { return "tests"; }
16
 
        bool exec()
17
 
        {
18
 
                conf->addExtra("CONFIG += tests");
19
 
                return true;
20
 
        }
21
 
};