Alexander Afanasyev | 8e60bcd | 2015-01-15 20:55:40 +0000 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
| 2 | |
| 3 | from waflib.Configure import conf |
| 4 | |
| 5 | OVERRIDE = ''' |
| 6 | class Base |
| 7 | { |
| 8 | virtual void |
| 9 | f(int a); |
| 10 | }; |
| 11 | |
| 12 | class Derived : public Base |
| 13 | { |
| 14 | virtual void |
| 15 | f(int a) override; |
| 16 | }; |
| 17 | ''' |
| 18 | |
| 19 | @conf |
| 20 | def check_override(self): |
| 21 | if self.check_cxx(msg='Checking for override specifier', |
| 22 | fragment=OVERRIDE, |
| 23 | features='cxx', mandatory=False): |
| 24 | self.define('HAVE_CXX_OVERRIDE', 1) |
| 25 | |
| 26 | def configure(conf): |
| 27 | conf.check_override() |