12345678910111213141516171819202122232425262728293031323334 |
- VERSION='0.0.1'
- APPNAME='qt5_test'
- top = '.'
- out = 'build'
- def options(opt):
- opt.load('compiler_cxx qt5')
- def configure(conf):
- conf.load('compiler_cxx qt5')
-
- def build(bld):
-
-
-
-
-
- bld(
- features = 'qt5 cxx cxxprogram',
- use = 'QT5CORE QT5GUI QT5SVG QT5WIDGETS',
- source = 'main.cpp res.qrc but.ui foo.cpp',
- moc = 'foo.h',
- target = 'window',
- includes = '.',
- lang = bld.path.ant_glob('linguist/*.ts'),
- langname = 'somefile',
- )
|