Yingdi Yu | 767d2ac | 2013-10-09 15:16:11 -0700 | [diff] [blame] | 1 | # -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 | VERSION='0.1' | ||||
3 | APPNAME='QT-Test' | ||||
4 | |||||
5 | def options(opt): | ||||
6 | opt.load('compiler_c compiler_cxx boost protoc qt4') | ||||
7 | |||||
8 | def 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') |