build: Always build in C++11 mode.

This commit also embeds CI build scripts and includes waf script update

Change-Id: Ib89dd8040b5e438866315425293b02694b8d85fe
Refs: #1930
This commit is contained in:
Alexander Afanasyev
2014-10-30 15:37:45 -07:00
parent 976c3972c7
commit 740812e0d8
9 changed files with 140 additions and 11 deletions
+4 -2
View File
@@ -3,10 +3,12 @@ VERSION='0.1'
APPNAME="ndn-traffic-generator"
def options(opt):
opt.load('compiler_cxx gnu_dirs')
opt.load(['compiler_cxx', 'gnu_dirs'])
opt.load(['default-compiler-flags'], tooldir=['.waf-tools'])
def configure(conf):
conf.load("compiler_cxx gnu_dirs")
conf.load(['compiler_cxx', 'gnu_dirs',
'default-compiler-flags'])
conf.check_cfg(package='libndn-cxx', args=['--cflags', '--libs'],
uselib_store='NDN_CXX', mandatory=True)