blob: 80f3db1f8772ce20b24fac1fda49b4b7d71e78aa [file] [log] [blame]
Yingdi Yu767d2ac2013-10-09 15:16:11 -07001# -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2VERSION='0.1'
3APPNAME='QT-Test'
4
5def options(opt):
6 opt.load('compiler_c compiler_cxx boost protoc qt4')
7
8def configure(conf):
9 conf.load("compiler_c compiler_cxx")
10
11# conf.add_supported_cxxflags (cxxflags = ['-O3', '-g'])
12
13 conf.load('protoc')
14
15 conf.load('qt4')
16
17 conf.load('boost')
18
19 conf.check_boost(lib='system random thread')